Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 51f9ea2d 9916ff9d

+4920 -274
+6
maintainers/maintainer-list.nix
··· 7606 githubId = 287769; 7607 name = "Sergii Paryzhskyi"; 7608 }; 7609 heisfer = { 7610 email = "heisfer@refract.dev"; 7611 github = "heisfer";
··· 7606 githubId = 287769; 7607 name = "Sergii Paryzhskyi"; 7608 }; 7609 + heijligen = { 7610 + email = "src@posteo.de"; 7611 + github = "heijligen"; 7612 + githubId = 19170376; 7613 + name = "Thomas Heijligen"; 7614 + }; 7615 heisfer = { 7616 email = "heisfer@refract.dev"; 7617 github = "heisfer";
+2
nixos/doc/manual/release-notes/rl-2405.section.md
··· 16 17 - `linuxPackages_testing_bcachefs` is now fully deprecated by `linuxPackages_latest`, and is therefore no longer available. 18 19 - NixOS now installs a stub ELF loader that prints an informative error message when users attempt to run binaries not made for NixOS. 20 - This can be disabled through the `environment.stub-ld.enable` option. 21 - If you use `programs.nix-ld.enable`, no changes are needed. The stub will be disabled automatically.
··· 16 17 - `linuxPackages_testing_bcachefs` is now fully deprecated by `linuxPackages_latest`, and is therefore no longer available. 18 19 + - The default kernel package has been updated from 6.1 to 6.6. All supported kernels remain available. 20 + 21 - NixOS now installs a stub ELF loader that prints an informative error message when users attempt to run binaries not made for NixOS. 22 - This can be disabled through the `environment.stub-ld.enable` option. 23 - If you use `programs.nix-ld.enable`, no changes are needed. The stub will be disabled automatically.
+14 -1
nixos/modules/services/monitoring/prometheus/exporters/nut.nix
··· 36 provisioned outside of Nix store. 37 ''; 38 }; 39 }; 40 serviceOpts = { 41 script = '' ··· 44 ${pkgs.prometheus-nut-exporter}/bin/nut_exporter \ 45 --nut.server=${cfg.nutServer} \ 46 --web.listen-address="${cfg.listenAddress}:${toString cfg.port}" \ 47 - ${optionalString (cfg.nutUser != "") "--nut.username=${cfg.nutUser}"} 48 ''; 49 }; 50 }
··· 36 provisioned outside of Nix store. 37 ''; 38 }; 39 + nutVariables = mkOption { 40 + type = types.listOf types.str; 41 + default = [ ]; 42 + description = '' 43 + List of NUT variable names to monitor. 44 + 45 + If no variables are set, all numeric variables will be exported automatically. 46 + See the [upstream docs](https://github.com/DRuggeri/nut_exporter?tab=readme-ov-file#variables-and-information) 47 + for more information. 48 + ''; 49 + }; 50 }; 51 serviceOpts = { 52 script = '' ··· 55 ${pkgs.prometheus-nut-exporter}/bin/nut_exporter \ 56 --nut.server=${cfg.nutServer} \ 57 --web.listen-address="${cfg.listenAddress}:${toString cfg.port}" \ 58 + ${optionalString (cfg.nutUser != "") "--nut.username=${cfg.nutUser}"} \ 59 + ${optionalString (cfg.nutVariables != []) "--nut.vars_enable=${concatStringsSep "," cfg.nutVariables}"} \ 60 + ${concatStringsSep " " cfg.extraFlags} 61 ''; 62 }; 63 }
+5
nixos/tests/k3s/default.nix
··· 6 allK3s = lib.filterAttrs (n: _: lib.strings.hasPrefix "k3s_" n) pkgs; 7 in 8 { 9 # Run a single node k3s cluster and verify a pod can run 10 single-node = lib.mapAttrs (_: k3s: import ./single-node.nix { inherit system pkgs k3s; }) allK3s; 11 # Run a multi-node k3s cluster and verify pod networking works across nodes
··· 6 allK3s = lib.filterAttrs (n: _: lib.strings.hasPrefix "k3s_" n) pkgs; 7 in 8 { 9 + # Testing K3s with Etcd backend 10 + etcd = lib.mapAttrs (_: k3s: import ./etcd.nix { 11 + inherit system pkgs k3s; 12 + inherit (pkgs) etcd; 13 + }) allK3s; 14 # Run a single node k3s cluster and verify a pod can run 15 single-node = lib.mapAttrs (_: k3s: import ./single-node.nix { inherit system pkgs k3s; }) allK3s; 16 # Run a multi-node k3s cluster and verify pod networking works across nodes
+100
nixos/tests/k3s/etcd.nix
···
··· 1 + import ../make-test-python.nix ({ pkgs, lib, k3s, etcd, ... }: 2 + 3 + { 4 + name = "${k3s.name}-etcd"; 5 + 6 + nodes = { 7 + 8 + etcd = { ... }: { 9 + services.etcd = { 10 + enable = true; 11 + openFirewall = true; 12 + listenClientUrls = [ "http://192.168.1.1:2379" "http://127.0.0.1:2379" ]; 13 + listenPeerUrls = [ "http://192.168.1.1:2380" ]; 14 + initialAdvertisePeerUrls = [ "http://192.168.1.1:2380" ]; 15 + initialCluster = [ "etcd=http://192.168.1.1:2380" ]; 16 + }; 17 + networking = { 18 + useDHCP = false; 19 + defaultGateway = "192.168.1.1"; 20 + interfaces.eth1.ipv4.addresses = pkgs.lib.mkForce [ 21 + { address = "192.168.1.1"; prefixLength = 24; } 22 + ]; 23 + }; 24 + }; 25 + 26 + k3s = { pkgs, ... }: { 27 + environment.systemPackages = with pkgs; [ jq ]; 28 + # k3s uses enough resources the default vm fails. 29 + virtualisation.memorySize = 1536; 30 + virtualisation.diskSize = 4096; 31 + 32 + services.k3s = { 33 + enable = true; 34 + role = "server"; 35 + extraFlags = builtins.toString [ 36 + "--datastore-endpoint=\"http://192.168.1.1:2379\"" 37 + "--disable" "coredns" 38 + "--disable" "local-storage" 39 + "--disable" "metrics-server" 40 + "--disable" "servicelb" 41 + "--disable" "traefik" 42 + "--node-ip" "192.168.1.2" 43 + ]; 44 + }; 45 + 46 + networking = { 47 + firewall = { 48 + allowedTCPPorts = [ 2379 2380 6443 ]; 49 + allowedUDPPorts = [ 8472 ]; 50 + }; 51 + useDHCP = false; 52 + defaultGateway = "192.168.1.2"; 53 + interfaces.eth1.ipv4.addresses = pkgs.lib.mkForce [ 54 + { address = "192.168.1.2"; prefixLength = 24; } 55 + ]; 56 + }; 57 + }; 58 + 59 + }; 60 + 61 + testScript = '' 62 + with subtest("should start etcd"): 63 + etcd.start() 64 + etcd.wait_for_unit("etcd.service") 65 + 66 + with subtest("should wait for etcdctl endpoint status to succeed"): 67 + etcd.wait_until_succeeds("etcdctl endpoint status") 68 + 69 + with subtest("should start k3s"): 70 + k3s.start() 71 + k3s.wait_for_unit("k3s") 72 + 73 + with subtest("should test if kubectl works"): 74 + k3s.wait_until_succeeds("k3s kubectl get node") 75 + 76 + with subtest("should wait for service account to show up; takes a sec"): 77 + k3s.wait_until_succeeds("k3s kubectl get serviceaccount default") 78 + 79 + with subtest("should create a sample secret object"): 80 + k3s.succeed("k3s kubectl create secret generic nixossecret --from-literal thesecret=abacadabra") 81 + 82 + with subtest("should check if secret is correct"): 83 + k3s.wait_until_succeeds("[[ $(kubectl get secrets nixossecret -o json | jq -r .data.thesecret | base64 -d) == abacadabra ]]") 84 + 85 + with subtest("should have a secret in database"): 86 + etcd.wait_until_succeeds("[[ $(etcdctl get /registry/secrets/default/nixossecret | head -c1 | wc -c) -ne 0 ]]") 87 + 88 + with subtest("should delete the secret"): 89 + k3s.succeed("k3s kubectl delete secret nixossecret") 90 + 91 + with subtest("should not have a secret in database"): 92 + etcd.wait_until_fails("[[ $(etcdctl get /registry/secrets/default/nixossecret | head -c1 | wc -c) -ne 0 ]]") 93 + 94 + with subtest("should shutdown k3s and etcd"): 95 + k3s.shutdown() 96 + etcd.shutdown() 97 + ''; 98 + 99 + meta.maintainers = etcd.meta.maintainers ++ k3s.meta.maintainers; 100 + })
+2 -2
pkgs/applications/audio/mopidy/muse.nix
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "mopidy-muse"; 5 - version = "0.0.30"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "Mopidy-Muse"; 10 - sha256 = "sha256-uFptv2niq8LVvEmMEteEN+RzghDiPC7z5EsAmxifDmw="; 11 }; 12 13 propagatedBuildInputs = [
··· 2 3 pythonPackages.buildPythonApplication rec { 4 pname = "mopidy-muse"; 5 + version = "0.0.33"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "Mopidy-Muse"; 10 + sha256 = "sha256-CEPAPWtMrD+HljyqBB6EAyGVeOjzkvVoEywlE4XEJGs="; 11 }; 12 13 propagatedBuildInputs = [
+3 -3
pkgs/applications/audio/spotify/linux.nix
··· 14 # If an update breaks things, one of those might have valuable info: 15 # https://aur.archlinux.org/packages/spotify/ 16 # https://community.spotify.com/t5/Desktop-Linux 17 - version = "1.2.26.1187.g36b715a1"; 18 # To get the latest stable revision: 19 # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' 20 # To get general information: 21 # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' 22 # More examples of api usage: 23 # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py 24 - rev = "74"; 25 26 deps = [ 27 alsa-lib ··· 87 # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 88 src = fetchurl { 89 url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; 90 - hash = "sha512-Muurn4ih54oVTvLGuRfTPCgGSRImE8O0S5k7gZ4Utgrz3TKgVrthY9AXldP8v+qLcfIrrYwixJy2WGuur9E0jg=="; 91 }; 92 93 nativeBuildInputs = [ wrapGAppsHook makeShellWrapper squashfsTools ];
··· 14 # If an update breaks things, one of those might have valuable info: 15 # https://aur.archlinux.org/packages/spotify/ 16 # https://community.spotify.com/t5/Desktop-Linux 17 + version = "1.2.31.1205.g4d59ad7c"; 18 # To get the latest stable revision: 19 # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' 20 # To get general information: 21 # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' 22 # More examples of api usage: 23 # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py 24 + rev = "75"; 25 26 deps = [ 27 alsa-lib ··· 87 # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 88 src = fetchurl { 89 url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; 90 + hash = "sha512-o4iLcbNqbsxo9YJMy0SXO7Udv4CMhhBcsf53UuqWKFFWY/jKVN+Lb+dB7Jf9+UowpmbrP44w97Oi+dnbfFXYjQ=="; 91 }; 92 93 nativeBuildInputs = [ wrapGAppsHook makeShellWrapper squashfsTools ];
+2 -2
pkgs/applications/editors/rednotebook/default.nix
··· 5 6 buildPythonApplication rec { 7 pname = "rednotebook"; 8 - version = "2.31"; 9 10 src = fetchFromGitHub { 11 owner = "jendrikseipp"; 12 repo = "rednotebook"; 13 rev = "refs/tags/v${version}"; 14 - sha256 = "sha256-TggbHXJqgQ4vFSCLncgzrqJLRT9zQs6YsTQ3/Z4Mixg="; 15 }; 16 17 # We have not packaged tests.
··· 5 6 buildPythonApplication rec { 7 pname = "rednotebook"; 8 + version = "2.32"; 9 10 src = fetchFromGitHub { 11 owner = "jendrikseipp"; 12 repo = "rednotebook"; 13 rev = "refs/tags/v${version}"; 14 + sha256 = "sha256-sYgiJ4Sc/5Ns3DSlwT03gt54UdzdcvMx1+c27amhulQ="; 15 }; 16 17 # We have not packaged tests.
+3 -3
pkgs/applications/emulators/wine/sources.nix
··· 69 70 unstable = fetchurl rec { 71 # NOTE: Don't forget to change the hash for staging as well. 72 - version = "9.2"; 73 url = "https://dl.winehq.org/wine/source/9.x/wine-${version}.tar.xz"; 74 - hash = "sha256-goHFoILMR6w8LJHOqt5fFzllU7Oa3LMudBJThltlgWI="; 75 inherit (stable) patches; 76 77 ## see http://wiki.winehq.org/Gecko ··· 117 staging = fetchFromGitLab rec { 118 # https://gitlab.winehq.org/wine/wine-staging 119 inherit (unstable) version; 120 - hash = "sha256-VQ4j4PuXRoXbCUZ16snVO+jRvuKD4Rjn14R7bhwdAco="; 121 domain = "gitlab.winehq.org"; 122 owner = "wine"; 123 repo = "wine-staging";
··· 69 70 unstable = fetchurl rec { 71 # NOTE: Don't forget to change the hash for staging as well. 72 + version = "9.3"; 73 url = "https://dl.winehq.org/wine/source/9.x/wine-${version}.tar.xz"; 74 + hash = "sha256-FIsuNBR9H6FIQVY3xyPJn0N26SyE6QzB0OAK1O07F5M="; 75 inherit (stable) patches; 76 77 ## see http://wiki.winehq.org/Gecko ··· 117 staging = fetchFromGitLab rec { 118 # https://gitlab.winehq.org/wine/wine-staging 119 inherit (unstable) version; 120 + hash = "sha256-1k7HHcsosce5MX86IMiFrfjg0li4DuP0utjyal1Iwkc="; 121 domain = "gitlab.winehq.org"; 122 owner = "wine"; 123 repo = "wine-staging";
+2 -2
pkgs/applications/graphics/gthumb/default.nix
··· 35 36 stdenv.mkDerivation rec { 37 pname = "gthumb"; 38 - version = "3.12.4"; 39 40 src = fetchurl { 41 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 42 - sha256 = "sha256-rdaTrArrmjDYKboDoGIIKJ0/aGjcOwJXNUnogZDHlOg="; 43 }; 44 45 nativeBuildInputs = [
··· 35 36 stdenv.mkDerivation rec { 37 pname = "gthumb"; 38 + version = "3.12.5"; 39 40 src = fetchurl { 41 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 42 + sha256 = "sha256-9jhd9F/oxyYuw0nhP4FRLpDpl5jdI3eTLkKR1jNZ86s="; 43 }; 44 45 nativeBuildInputs = [
+9 -10
pkgs/applications/misc/johnny-reborn/default.nix
··· 4 , SDL2 5 }: 6 7 - stdenv.mkDerivation { 8 pname = "johnny-reborn-engine"; 9 - version = "unstable-2020-12-06"; 10 11 src = fetchFromGitHub { 12 - owner = "jno6809"; 13 repo = "jc_reborn"; 14 - rev = "524a5803e4fa65f840379c781f40ce39a927032e"; 15 - hash = "sha256-YKAOCgdRnvNMzL6LJVXN0pLvjyJk4Zv/RCqGtDPFR90="; 16 }; 17 18 - makefile = "Makefile.linux"; 19 - 20 buildInputs = [ SDL2 ]; 21 22 installPhase = '' 23 runHook preInstall 24 25 - mkdir -p $out 26 - cp jc_reborn $out/ 27 28 runHook postInstall 29 ''; 30 31 meta = { 32 description = "An open-source engine for the classic \"Johnny Castaway\" screensaver (engine only)"; 33 - homepage = "https://github.com/jno6809/jc_reborn"; 34 license = lib.licenses.gpl3Plus; 35 maintainers = with lib.maintainers; [ pedrohlc ]; 36 inherit (SDL2.meta) platforms; 37 }; 38 }
··· 4 , SDL2 5 }: 6 7 + stdenv.mkDerivation rec { 8 pname = "johnny-reborn-engine"; 9 + version = "0.30"; 10 11 src = fetchFromGitHub { 12 + owner = "xesf"; 13 repo = "jc_reborn"; 14 + rev = "v${version}"; 15 + hash = "sha256-n3ELNFvjeDzbamyQIdM9mf/A1sstuhCGzrL9NuXf90Y="; 16 }; 17 18 buildInputs = [ SDL2 ]; 19 20 installPhase = '' 21 runHook preInstall 22 23 + mkdir -p $out/bin 24 + cp jc_reborn $out/bin/ 25 26 runHook postInstall 27 ''; 28 29 meta = { 30 description = "An open-source engine for the classic \"Johnny Castaway\" screensaver (engine only)"; 31 + homepage = "https://github.com/xesf/jc_reborn"; 32 license = lib.licenses.gpl3Plus; 33 maintainers = with lib.maintainers; [ pedrohlc ]; 34 + mainProgram = "jc_reborn"; 35 inherit (SDL2.meta) platforms; 36 }; 37 }
+6 -7
pkgs/applications/misc/johnny-reborn/with-data.nix
··· 6 , makeWrapper 7 }: 8 9 - 10 let 11 sounds = fetchFromGitHub { 12 owner = "nivs1978"; ··· 39 installPhase = '' 40 runHook preInstall 41 42 - mkdir -p $out 43 - cp -t $out/ \ 44 ../scrantic-source/RESOURCE.* \ 45 JCOS/Resources/sound*.wav 46 47 makeWrapper \ 48 - ${johnny-reborn-engine}/jc_reborn \ 49 - $out/jc_reborn \ 50 - --chdir $out 51 52 runHook postInstall 53 ''; ··· 56 description = "An open-source engine for the classic \"Johnny Castaway\" screensaver (ready to use, with resources)"; 57 license = lib.licenses.unfree; 58 maintainers = with lib.maintainers; [ pedrohlc ]; 59 - inherit (johnny-reborn-engine.meta) homepage platforms; 60 }; 61 }
··· 6 , makeWrapper 7 }: 8 9 let 10 sounds = fetchFromGitHub { 11 owner = "nivs1978"; ··· 38 installPhase = '' 39 runHook preInstall 40 41 + mkdir -p $out/share/jc_reborn/data 42 + cp -t $out/share/jc_reborn/data/ \ 43 ../scrantic-source/RESOURCE.* \ 44 JCOS/Resources/sound*.wav 45 46 makeWrapper \ 47 + ${johnny-reborn-engine}/bin/jc_reborn \ 48 + $out/bin/jc_reborn \ 49 + --chdir $out/share/jc_reborn 50 51 runHook postInstall 52 ''; ··· 55 description = "An open-source engine for the classic \"Johnny Castaway\" screensaver (ready to use, with resources)"; 56 license = lib.licenses.unfree; 57 maintainers = with lib.maintainers; [ pedrohlc ]; 58 + inherit (johnny-reborn-engine.meta) homepage platforms mainProgram; 59 }; 60 }
+3 -3
pkgs/applications/misc/kratos/default.nix
··· 2 3 buildGoModule rec { 4 pname = "kratos"; 5 - version = "1.0.0"; 6 7 src = fetchFromGitHub { 8 owner = "ory"; 9 repo = "kratos"; 10 rev = "v${version}"; 11 - hash = "sha256-KDpc0zc65rvvpPojghFEujoS0aewyjv7B/bmpC2i1dA="; 12 }; 13 14 - vendorHash = "sha256-Y/Sd2hu1bPUb0TQRD1pANz+rtqKcHBXvjKpYwKgxHMQ="; 15 16 subPackages = [ "." ]; 17
··· 2 3 buildGoModule rec { 4 pname = "kratos"; 5 + version = "1.1.0"; 6 7 src = fetchFromGitHub { 8 owner = "ory"; 9 repo = "kratos"; 10 rev = "v${version}"; 11 + hash = "sha256-zrII2lpffZkwFauPAilh1QaqRKvpj1mlHZA7in1ljYg="; 12 }; 13 14 + vendorHash = "sha256-TSB7jCPOVwub+ZQaaUSmsz/R4HAfmnWb0wTf2w4aeuk="; 15 16 subPackages = [ "." ]; 17
+3 -3
pkgs/applications/networking/avalanchego/default.nix
··· 8 9 buildGoModule rec { 10 pname = "avalanchego"; 11 - version = "1.10.19"; 12 13 src = fetchFromGitHub { 14 owner = "ava-labs"; 15 repo = pname; 16 rev = "v${version}"; 17 - hash = "sha256-Pvl4t0nUHAwTdkR2fEFuFpLn2Hz5kw3IBFYDWSmGyXA="; 18 }; 19 20 - vendorHash = "sha256-WYewelAUkXLD6cwnJQ/jAYP99qq4HjEnJ4HwNUksHZU="; 21 # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 22 proxyVendor = true; 23
··· 8 9 buildGoModule rec { 10 pname = "avalanchego"; 11 + version = "1.11.1"; 12 13 src = fetchFromGitHub { 14 owner = "ava-labs"; 15 repo = pname; 16 rev = "v${version}"; 17 + hash = "sha256-uRoo2+1R1sPYN41ybrwGK+msYa2AC02w5h6hzeh9ASs="; 18 }; 19 20 + vendorHash = "sha256-x8AgsJuo2q5vRts4axMgL5rTJKQBfuIW341HnUhzvOI="; 21 # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 22 proxyVendor = true; 23
+1
pkgs/applications/networking/cluster/k3s/builder.nix
··· 355 passthru.mkTests = version: 356 let k3s_version = "k3s_" + lib.replaceStrings ["."] ["_"] (lib.versions.majorMinor version); 357 in { 358 single-node = nixosTests.k3s.single-node.${k3s_version}; 359 multi-node = nixosTests.k3s.multi-node.${k3s_version}; 360 };
··· 355 passthru.mkTests = version: 356 let k3s_version = "k3s_" + lib.replaceStrings ["."] ["_"] (lib.versions.majorMinor version); 357 in { 358 + etcd = nixosTests.k3s.etcd.${k3s_version}; 359 single-node = nixosTests.k3s.single-node.${k3s_version}; 360 multi-node = nixosTests.k3s.multi-node.${k3s_version}; 361 };
+2 -2
pkgs/applications/networking/cluster/kubetail/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "kubetail"; 5 - version = "1.6.19"; 6 7 src = fetchFromGitHub { 8 owner = "johanhaleby"; 9 repo = "kubetail"; 10 rev = version; 11 - sha256 = "sha256-s+rz30VWG4RijeJuRYEhCmgFDjaxJ+4twgXrGkNc5c8="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "kubetail"; 5 + version = "1.6.20"; 6 7 src = fetchFromGitHub { 8 owner = "johanhaleby"; 9 repo = "kubetail"; 10 rev = version; 11 + sha256 = "sha256-RbbZHKXRtbs42cCbw+xb8TLul6ebUeCiNclMFF39c3M="; 12 }; 13 14 nativeBuildInputs = [ installShellFiles makeWrapper ];
+3 -3
pkgs/applications/terminal-emulators/rio/default.nix
··· 51 in 52 rustPlatform.buildRustPackage rec { 53 pname = "rio"; 54 - version = "0.0.34"; 55 56 src = fetchFromGitHub { 57 owner = "raphamorim"; 58 repo = "rio"; 59 rev = "v${version}"; 60 - hash = "sha256-UHA2j7NOPBl7qrCu5bWLHjpVgWxlydtj0F7lfAlQZXg="; 61 }; 62 63 - cargoHash = "sha256-xqLticREnGxsuo2d7d3VaFWbGJ5A1L7GvDwV7qQ61xs="; 64 65 nativeBuildInputs = [ 66 ncurses
··· 51 in 52 rustPlatform.buildRustPackage rec { 53 pname = "rio"; 54 + version = "0.0.35"; 55 56 src = fetchFromGitHub { 57 owner = "raphamorim"; 58 repo = "rio"; 59 rev = "v${version}"; 60 + hash = "sha256-e+GiNwvjwIi5wCyI+IQ0BZ8IR8by5RUq8dk1JO50mjU="; 61 }; 62 63 + cargoHash = "sha256-voQQjouCOwVLzOKtDUCa1lZLgx0JB7mvCqOY4BhmMr4="; 64 65 nativeBuildInputs = [ 66 ncurses
+3 -3
pkgs/applications/video/davinci-resolve/default.nix
··· 31 davinci = ( 32 stdenv.mkDerivation rec { 33 pname = "davinci-resolve${lib.optionalString studioVariant "-studio"}"; 34 - version = "18.6.4"; 35 36 nativeBuildInputs = [ 37 (appimage-run.override { buildFHSEnv = buildFHSEnvChroot; } ) ··· 52 outputHashAlgo = "sha256"; 53 outputHash = 54 if studioVariant 55 - then "sha256-Us8DsxdGwBxUL+yUHT9DNJFIV7EO+J9CSN2Juyf8VQ4=" 56 - else "sha256-yPdfmS42ID7MOTB3XlGXfOqp46kRLR8martJ9gWqDjA="; 57 58 impureEnvVars = lib.fetchers.proxyImpureEnvVars; 59
··· 31 davinci = ( 32 stdenv.mkDerivation rec { 33 pname = "davinci-resolve${lib.optionalString studioVariant "-studio"}"; 34 + version = "18.6.5"; 35 36 nativeBuildInputs = [ 37 (appimage-run.override { buildFHSEnv = buildFHSEnvChroot; } ) ··· 52 outputHashAlgo = "sha256"; 53 outputHash = 54 if studioVariant 55 + then "sha256-Ua5R0G4okBpz9SyyA2zn6nVflY9AlWch7Kx6PrW/nMg=" 56 + else "sha256-oCK7w5jB7h4PSKg2IJwriyAVi/kj4TurloBcfDAe6BQ="; 57 58 impureEnvVars = lib.fetchers.proxyImpureEnvVars; 59
+46
pkgs/by-name/ap/apt-mirror/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , perl 5 + , wget 6 + , makeWrapper 7 + , nix-update-script 8 + }: 9 + 10 + stdenv.mkDerivation (finalAttrs: { 11 + pname = "apt-mirror"; 12 + version = "0.5.4"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "apt-mirror"; 16 + repo = "apt-mirror"; 17 + rev = finalAttrs.version; 18 + hash = "sha256-GNsyXP/O56Y+8QhoSfMm+ig5lK/K3Cm085jxRt9ZRmI="; 19 + }; 20 + 21 + nativeBuildInputs = [ makeWrapper ]; 22 + 23 + buildInputs = [ perl ]; 24 + 25 + makeFlags = [ 26 + "DESTDIR=$(out)" 27 + "PREFIX=''" 28 + ]; 29 + 30 + postInstall = '' 31 + wrapProgram $out/bin/apt-mirror \ 32 + --prefix PATH : ${lib.makeBinPath [wget]} 33 + ''; 34 + 35 + passthru.updateScript = nix-update-script {}; 36 + 37 + meta = with lib; { 38 + description = "A tool that provides the ability to mirror any parts of apt sources"; 39 + homepage = "https://github.com/apt-mirror/apt-mirror"; 40 + changelog = "https://github.com/apt-mirror/apt-mirror/blob/${finalAttrs.src.rev}/CHANGELOG"; 41 + license = licenses.gpl2Only; 42 + maintainers = with maintainers; [ arthsmn ]; 43 + mainProgram = "apt-mirror"; 44 + platforms = platforms.all; 45 + }; 46 + })
+3 -3
pkgs/by-name/as/ast-grep/package.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "ast-grep"; 9 - version = "0.19.2"; 10 11 src = fetchFromGitHub { 12 owner = "ast-grep"; 13 repo = "ast-grep"; 14 rev = version; 15 - hash = "sha256-u9VoLGf8Qfy6wtU+rWZvIxOj1Q3RUKjE+LKISKtTKfA="; 16 }; 17 18 - cargoHash = "sha256-IPZ0R7SMdZi/h51lInXhRZFBAyEu/D8fwnUUkWV9Ivg="; 19 20 # Work around https://github.com/NixOS/nixpkgs/issues/166205. 21 env = lib.optionalAttrs stdenv.cc.isClang {
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "ast-grep"; 9 + version = "0.19.3"; 10 11 src = fetchFromGitHub { 12 owner = "ast-grep"; 13 repo = "ast-grep"; 14 rev = version; 15 + hash = "sha256-nqKDBRH2/YsSmirxJ84BgUTLfgPzZ/EQxqy6Fa7Mfxs="; 16 }; 17 18 + cargoHash = "sha256-48ZVbRJkpMO+kJE5Kz96McjXhMtu4TzzjfyYdggNWkQ="; 19 20 # Work around https://github.com/NixOS/nixpkgs/issues/166205. 21 env = lib.optionalAttrs stdenv.cc.isClang {
+40
pkgs/by-name/bp/bpftop/package.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , elfutils 6 + , zlib 7 + , libbpf 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "bpftop"; 12 + version = "0.2.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "Netflix"; 16 + repo = "bpftop"; 17 + rev = "v${version}"; 18 + hash = "sha256-HP8ubzCfBNgISrAyLACylH4PHxLhJPzIQFmIWEL5gjo="; 19 + }; 20 + 21 + cargoHash = "sha256-+zh7GZ/fbhxLNQkkHFZqtJxy2IeS+KX5s2Qi5N21u/0="; 22 + 23 + buildInputs = [ 24 + elfutils 25 + libbpf 26 + zlib 27 + ]; 28 + 29 + nativeBuildInputs = [ 30 + pkg-config 31 + ]; 32 + 33 + meta = { 34 + description = "A dynamic real-time view of running eBPF programs"; 35 + homepage = "https://github.com/Netflix/bpftop"; 36 + license = lib.licenses.asl20; 37 + maintainers = with lib.maintainers; [ mfrw ]; 38 + mainProgram = "bpftop"; 39 + }; 40 + }
+98
pkgs/by-name/by/byobu/package.nix
···
··· 1 + { lib 2 + , autoreconfHook 3 + , bc 4 + , fetchFromGitHub 5 + , gettext 6 + , makeWrapper 7 + , perl 8 + , python3 9 + , screen 10 + , stdenv 11 + , vim 12 + , tmux 13 + }: 14 + 15 + let 16 + pythonEnv = python3.withPackages (ps: with ps; [ snack ]); 17 + in 18 + stdenv.mkDerivation (finalAttrs: { 19 + pname = "byobu"; 20 + version = "6.12"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "dustinkirkland"; 24 + repo = "byobu"; 25 + rev = finalAttrs.version; 26 + hash = "sha256-NzC9Njsnz14mfKnERGDZw8O3vux0wnfCKwjUeTBQswc="; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + autoreconfHook 31 + gettext 32 + makeWrapper 33 + ]; 34 + 35 + buildInputs = [ 36 + perl # perl is needed for `lib/byobu/include/*` scripts 37 + screen 38 + tmux 39 + ]; 40 + 41 + doCheck = true; 42 + strictDeps = true; 43 + 44 + postPatch = '' 45 + for file in usr/bin/byobu-export.in usr/lib/byobu/menu; do 46 + substituteInPlace $file \ 47 + --replace "gettext" "${gettext}/bin/gettext" 48 + done 49 + ''; 50 + 51 + postInstall = '' 52 + # By some reason the po files are not being compiled 53 + for po in po/*.po; do 54 + lang=''${po#po/} 55 + lang=''${lang%.po} 56 + # Path where byobu looks for translations, as observed in the source code 57 + # and strace 58 + mkdir -p $out/share/byobu/po/$lang/LC_MESSAGES/ 59 + msgfmt --verbose $po -o $out/share/byobu/po/$lang/LC_MESSAGES/byobu.mo 60 + done 61 + 62 + # Override the symlinks, otherwise they mess with the wrapping 63 + cp --remove-destination $out/bin/byobu $out/bin/byobu-screen 64 + cp --remove-destination $out/bin/byobu $out/bin/byobu-tmux 65 + 66 + for file in $out/bin/byobu*; do 67 + # We don't use the usual "-wrapped" suffix because arg0 within the shebang 68 + # scripts points to the filename and byobu matches against this to know 69 + # which backend to start with 70 + bname="$(basename $file)" 71 + mv "$file" "$out/bin/.$bname" 72 + makeWrapper "$out/bin/.$bname" "$out/bin/$bname" \ 73 + --argv0 $bname \ 74 + --prefix PATH ":" "$out/bin" \ 75 + --set BYOBU_PATH ${lib.makeBinPath [ vim bc ]} \ 76 + --set BYOBU_PYTHON "${pythonEnv}/bin/python" 77 + done 78 + ''; 79 + 80 + meta = { 81 + homepage = "https://www.byobu.org/"; 82 + description = "Text-based window manager and terminal multiplexer"; 83 + longDescription = '' 84 + Byobu is a text-based window manager and terminal multiplexer. It was 85 + originally designed to provide elegant enhancements to the otherwise 86 + functional, plain, practical GNU Screen, for the Ubuntu server 87 + distribution. Byobu now includes an enhanced profiles, convenient 88 + keybindings, configuration utilities, and toggle-able system status 89 + notifications for both the GNU Screen window manager and the more modern 90 + Tmux terminal multiplexer, and works on most Linux, BSD, and Mac 91 + distributions. 92 + ''; 93 + license = with lib.licenses; [ gpl3Plus ]; 94 + mainProgram = "byobu"; 95 + maintainers = with lib.maintainers; [ AndersonTorres ]; 96 + platforms = lib.platforms.unix; 97 + }; 98 + })
+29
pkgs/by-name/el/elf-info/package.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , nix-update-script 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "elf-info"; 9 + version = "0.3.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "kevin-lesenechal"; 13 + repo = "elf-info"; 14 + rev = "v${version}"; 15 + hash = "sha256-wbFVuoarOoxV9FqmuHJ9eZlG4rRqy1rsnuqbGorC2Rk="; 16 + }; 17 + 18 + cargoHash = "sha256-r4GcJhQn9x5c2hbL+813mS3HbIg8OwNDsMg/fHQoL9Y="; 19 + 20 + passthru.updateScript = nix-update-script { }; 21 + 22 + meta = { 23 + description = "Inspect and dissect an ELF file with pretty formatting"; 24 + homepage = "https://github.com/kevin-lesenechal/elf-info"; 25 + license = lib.licenses.gpl3Only; 26 + maintainers = with lib.maintainers; [ viperML ]; 27 + mainProgram = "elf"; 28 + }; 29 + }
+3 -3
pkgs/by-name/gi/git-releaser/package.nix
··· 6 7 buildGoModule rec { 8 pname = "git-releaser"; 9 - version = "0.1.2"; 10 11 src = fetchFromGitHub { 12 owner = "git-releaser"; 13 repo = "git-releaser"; 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-rgnOXon68QMfVbyYhERy5z2pUlLCBwum7a/U9kdp5M0="; 16 }; 17 18 - vendorHash = "sha256-O6Rqdf6yZvW8aix51oIziip+WcVIiyDZZ2VOQfwP8Fs="; 19 20 ldflags = [ "-X main.version=${version}" ]; 21
··· 6 7 buildGoModule rec { 8 pname = "git-releaser"; 9 + version = "0.1.3"; 10 11 src = fetchFromGitHub { 12 owner = "git-releaser"; 13 repo = "git-releaser"; 14 rev = "refs/tags/v${version}"; 15 + hash = "sha256-27xUsqFuAu02jYLi3LiTnVjifqZIr39lPwMfJea7a4A="; 16 }; 17 18 + vendorHash = "sha256-uKS7MwCak/CjnMjzFKqYypBVZFl+3hD1xVaOPvQV9E0="; 19 20 ldflags = [ "-X main.version=${version}" ]; 21
+3 -3
pkgs/by-name/hu/hugo/package.nix
··· 10 11 buildGoModule rec { 12 pname = "hugo"; 13 - version = "0.123.3"; 14 15 src = fetchFromGitHub { 16 owner = "gohugoio"; 17 repo = "hugo"; 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-agFXyxjqtnL2JsOfIhp+o46kzw/F/Ggq1ALPPgZy+Gg="; 20 }; 21 22 - vendorHash = "sha256-1cd0w9eIPSlhznOQaIiaPoIBnQ4DycVUbZwLOlJ+t8o="; 23 24 doCheck = false; 25
··· 10 11 buildGoModule rec { 12 pname = "hugo"; 13 + version = "0.123.4"; 14 15 src = fetchFromGitHub { 16 owner = "gohugoio"; 17 repo = "hugo"; 18 rev = "refs/tags/v${version}"; 19 + hash = "sha256-AJ/uK2eunQgsCcXR8FcQ9TVvMXs56J0gpfXRQCX78qY="; 20 }; 21 22 + vendorHash = "sha256-6qNICaj+P0VRl/crbiucZ7CpBG1vwFURkvOdaH6WidU="; 23 24 doCheck = false; 25
+80
pkgs/by-name/hy/hyprlock/package.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + , libGL 7 + , libxkbcommon 8 + , hyprlang 9 + , pam 10 + , wayland 11 + , wayland-protocols 12 + , cairo 13 + , pango 14 + , libdrm 15 + , mesa 16 + , nix-update-script 17 + , expat 18 + , libXdmcp 19 + , pcre2 20 + , util-linux 21 + , libselinux 22 + , libsepol 23 + , pcre 24 + , fribidi 25 + , libthai 26 + , libdatrie 27 + }: 28 + 29 + stdenv.mkDerivation (finalAttrs: { 30 + pname = "hyprlock"; 31 + version = "0.1.0"; 32 + 33 + src = fetchFromGitHub { 34 + owner = "hyprwm"; 35 + repo = "hyprlock"; 36 + rev = "v${finalAttrs.version}"; 37 + hash = "sha256-SX3VRcewkqeAIY6ptgfk9+C6KB9aCEUOacb2pKl3kO0="; 38 + }; 39 + 40 + strictDeps = true; 41 + 42 + nativeBuildInputs = [ 43 + cmake 44 + pkg-config 45 + ]; 46 + 47 + buildInputs = [ 48 + cairo 49 + expat 50 + fribidi 51 + hyprlang 52 + libdatrie 53 + libdrm 54 + libGL 55 + libselinux 56 + libsepol 57 + libthai 58 + libXdmcp 59 + libxkbcommon 60 + mesa 61 + pam 62 + pango 63 + pcre 64 + pcre2 65 + util-linux 66 + wayland 67 + wayland-protocols 68 + ]; 69 + 70 + passthru.updateScript = nix-update-script { }; 71 + 72 + meta = { 73 + description = "Hyprland's GPU-accelerated screen locking utility"; 74 + homepage = "https://github.com/hyprwm/hyprlock"; 75 + license = lib.licenses.bsd3; 76 + maintainers = with lib.maintainers; [ eclairevoyant ]; 77 + mainProgram = "hyprlock"; 78 + platforms = [ "aarch64-linux" "x86_64-linux" ]; 79 + }; 80 + })
+16 -7
pkgs/by-name/im/imhex/package.nix
··· 3 , cmake 4 , llvm 5 , fetchFromGitHub 6 , mbedtls 7 , gtk3 8 , pkg-config ··· 22 }: 23 24 let 25 - # FIXME: unstable, stable needs #252945 (details in #258964) 26 - # Next version bump should be stabilized 27 - version = "unstable-2023-10-01"; 28 - patterns_version = "1.31.0"; 29 30 patterns_src = fetchFromGitHub { 31 owner = "WerWolv"; 32 repo = "ImHex-Patterns"; 33 rev = "ImHex-v${patterns_version}"; 34 - hash = "sha256-lTTXu9RxoD582lXWI789gNcWvJmxmBIlBRIiyY3DseM="; 35 }; 36 37 in ··· 43 fetchSubmodules = true; 44 owner = "WerWolv"; 45 repo = pname; 46 - rev = "a62ede784018f9d5aaf40587f71a1271429ab50b"; 47 - hash = "sha256-L3ncmM7Ro60DvOF/Y0fjo2Smlw2LL8cPa8H6yVGdGAk="; 48 }; 49 50 nativeBuildInputs = [ cmake llvm python3 perl pkg-config rsync ]; 51
··· 3 , cmake 4 , llvm 5 , fetchFromGitHub 6 + , fetchpatch 7 , mbedtls 8 , gtk3 9 , pkg-config ··· 23 }: 24 25 let 26 + version = "1.32.2"; 27 + patterns_version = "1.32.2"; 28 29 patterns_src = fetchFromGitHub { 30 owner = "WerWolv"; 31 repo = "ImHex-Patterns"; 32 rev = "ImHex-v${patterns_version}"; 33 + hash = "sha256-K+LiQvykCrOwhEVy37lh7VSf5YJyBQtLz8AGFsuRznQ="; 34 }; 35 36 in ··· 42 fetchSubmodules = true; 43 owner = "WerWolv"; 44 repo = pname; 45 + rev = "v${version}"; 46 + hash = "sha256-MYOZHQMYbbP01z0FyoCgTzwY1/71eUCmJYYfYvN9+so="; 47 }; 48 + 49 + patches = [ 50 + # Backport fixes (and fix to fix) for default plugin not being loaded. 51 + (fetchpatch { 52 + url = "https://github.com/WerWolv/PatternLanguage/compare/ImHex-v1.32.2..1adcdd358d3772681242267ddd3459c9d0913796.patch"; 53 + stripLen = 1; 54 + extraPrefix = "lib/external/pattern_language/"; 55 + hash = "sha256-aGvt7vQ6PtFE3sw4rAXUP7Pq8cL29LEKyC0rJKkxOZI="; 56 + }) 57 + ]; 58 59 nativeBuildInputs = [ cmake llvm python3 perl pkg-config rsync ]; 60
+3 -3
pkgs/by-name/li/livekit/package.nix
··· 5 6 buildGoModule rec { 7 pname = "livekit"; 8 - version = "1.5.2"; 9 10 src = fetchFromGitHub { 11 owner = "livekit"; 12 repo = "livekit"; 13 rev = "v${version}"; 14 - hash = "sha256-Z1N6iYXd3HswRJql3YZMot5fdkdFFbJuxyGDgLsbtQI="; 15 }; 16 17 - vendorHash = "sha256-O0rlezMdhoRHdK37BGKW3CHLpYfkFC1d83o5u54LQ8k="; 18 19 subPackages = [ "cmd/server" ]; 20
··· 5 6 buildGoModule rec { 7 pname = "livekit"; 8 + version = "1.5.3"; 9 10 src = fetchFromGitHub { 11 owner = "livekit"; 12 repo = "livekit"; 13 rev = "v${version}"; 14 + hash = "sha256-2MooX+wy7KetxEBgQoVoL4GuVkm+SbTzYgfWyLL7KU8="; 15 }; 16 17 + vendorHash = "sha256-8YR0Bl+sQsqpFtD+1GeYaydBdHeM0rRL2NbgAh9kCj0="; 18 19 subPackages = [ "cmd/server" ]; 20
+18 -17
pkgs/by-name/rq/rqbit/Cargo.lock
··· 175 176 [[package]] 177 name = "axum" 178 - version = "0.7.3" 179 source = "registry+https://github.com/rust-lang/crates.io-index" 180 - checksum = "d09dbe0e490df5da9d69b36dca48a76635288a82f92eca90024883a56202026d" 181 dependencies = [ 182 "async-trait", 183 - "axum-core 0.4.2", 184 "bytes", 185 "futures-util", 186 "http 1.0.0", 187 "http-body 1.0.0", 188 "http-body-util", 189 - "hyper 1.1.0", 190 "hyper-util", 191 "itoa", 192 "matchit", ··· 226 227 [[package]] 228 name = "axum-core" 229 - version = "0.4.2" 230 source = "registry+https://github.com/rust-lang/crates.io-index" 231 - checksum = "e87c8503f93e6d144ee5690907ba22db7ba79ab001a932ab99034f0fe836b3df" 232 dependencies = [ 233 "async-trait", 234 "bytes", ··· 868 869 [[package]] 870 name = "h2" 871 - version = "0.4.0" 872 source = "registry+https://github.com/rust-lang/crates.io-index" 873 - checksum = "e1d308f63daf4181410c242d34c11f928dcb3aa105852019e043c9d1f4e4368a" 874 dependencies = [ 875 "bytes", 876 "fnv", ··· 1034 1035 [[package]] 1036 name = "hyper" 1037 - version = "1.1.0" 1038 source = "registry+https://github.com/rust-lang/crates.io-index" 1039 - checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75" 1040 dependencies = [ 1041 "bytes", 1042 "futures-channel", 1043 "futures-util", 1044 - "h2 0.4.0", 1045 "http 1.0.0", 1046 "http-body 1.0.0", 1047 "httparse", 1048 "httpdate", 1049 "itoa", 1050 "pin-project-lite", 1051 "tokio", 1052 ] 1053 ··· 1101 "futures-util", 1102 "http 1.0.0", 1103 "http-body 1.0.0", 1104 - "hyper 1.1.0", 1105 "pin-project-lite", 1106 "socket2", 1107 "tokio", ··· 1253 1254 [[package]] 1255 name = "librqbit" 1256 - version = "5.4.2" 1257 dependencies = [ 1258 "anyhow", 1259 - "axum 0.7.3", 1260 "backoff", 1261 "base64", 1262 "bincode", ··· 2025 2026 [[package]] 2027 name = "rqbit" 2028 - version = "5.4.2" 2029 dependencies = [ 2030 "anyhow", 2031 "bytes", ··· 2291 2292 [[package]] 2293 name = "smallvec" 2294 - version = "1.11.2" 2295 source = "registry+https://github.com/rust-lang/crates.io-index" 2296 - checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 2297 2298 [[package]] 2299 name = "socket2"
··· 175 176 [[package]] 177 name = "axum" 178 + version = "0.7.4" 179 source = "registry+https://github.com/rust-lang/crates.io-index" 180 + checksum = "1236b4b292f6c4d6dc34604bb5120d85c3fe1d1aa596bd5cc52ca054d13e7b9e" 181 dependencies = [ 182 "async-trait", 183 + "axum-core 0.4.3", 184 "bytes", 185 "futures-util", 186 "http 1.0.0", 187 "http-body 1.0.0", 188 "http-body-util", 189 + "hyper 1.2.0", 190 "hyper-util", 191 "itoa", 192 "matchit", ··· 226 227 [[package]] 228 name = "axum-core" 229 + version = "0.4.3" 230 source = "registry+https://github.com/rust-lang/crates.io-index" 231 + checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3" 232 dependencies = [ 233 "async-trait", 234 "bytes", ··· 868 869 [[package]] 870 name = "h2" 871 + version = "0.4.2" 872 source = "registry+https://github.com/rust-lang/crates.io-index" 873 + checksum = "31d030e59af851932b72ceebadf4a2b5986dba4c3b99dd2493f8273a0f151943" 874 dependencies = [ 875 "bytes", 876 "fnv", ··· 1034 1035 [[package]] 1036 name = "hyper" 1037 + version = "1.2.0" 1038 source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + checksum = "186548d73ac615b32a73aafe38fb4f56c0d340e110e5a200bcadbaf2e199263a" 1040 dependencies = [ 1041 "bytes", 1042 "futures-channel", 1043 "futures-util", 1044 + "h2 0.4.2", 1045 "http 1.0.0", 1046 "http-body 1.0.0", 1047 "httparse", 1048 "httpdate", 1049 "itoa", 1050 "pin-project-lite", 1051 + "smallvec", 1052 "tokio", 1053 ] 1054 ··· 1102 "futures-util", 1103 "http 1.0.0", 1104 "http-body 1.0.0", 1105 + "hyper 1.2.0", 1106 "pin-project-lite", 1107 "socket2", 1108 "tokio", ··· 1254 1255 [[package]] 1256 name = "librqbit" 1257 + version = "5.5.0" 1258 dependencies = [ 1259 "anyhow", 1260 + "axum 0.7.4", 1261 "backoff", 1262 "base64", 1263 "bincode", ··· 2026 2027 [[package]] 2028 name = "rqbit" 2029 + version = "5.5.0" 2030 dependencies = [ 2031 "anyhow", 2032 "bytes", ··· 2292 2293 [[package]] 2294 name = "smallvec" 2295 + version = "1.13.1" 2296 source = "registry+https://github.com/rust-lang/crates.io-index" 2297 + checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7" 2298 2299 [[package]] 2300 name = "socket2"
+2 -2
pkgs/by-name/rq/rqbit/package.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "rqbit"; 5 - version = "5.4.2"; 6 7 src = fetchFromGitHub { 8 owner = "ikatson"; 9 repo = "rqbit"; 10 rev = "v${version}"; 11 - hash = "sha256-ZC68RQi0UcdALKVgwRUyO0+ZmKtGMjudYQabsAnghzg="; 12 }; 13 14 cargoLock = {
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "rqbit"; 5 + version = "5.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "ikatson"; 9 repo = "rqbit"; 10 rev = "v${version}"; 11 + hash = "sha256-3Wqej2Zb/RxxOOhWscZiyafGftl3ShozqVkUF7V0fP4="; 12 }; 13 14 cargoLock = {
+4060
pkgs/by-name/sq/squirreldisk/Cargo.lock
···
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "adler" 7 + version = "1.0.2" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 + 11 + [[package]] 12 + name = "aho-corasick" 13 + version = "0.7.20" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" 16 + dependencies = [ 17 + "memchr", 18 + ] 19 + 20 + [[package]] 21 + name = "alloc-no-stdlib" 22 + version = "2.0.4" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" 25 + 26 + [[package]] 27 + name = "alloc-stdlib" 28 + version = "0.2.2" 29 + source = "registry+https://github.com/rust-lang/crates.io-index" 30 + checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" 31 + dependencies = [ 32 + "alloc-no-stdlib", 33 + ] 34 + 35 + [[package]] 36 + name = "anyhow" 37 + version = "1.0.68" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" 40 + 41 + [[package]] 42 + name = "assert-cmp" 43 + version = "0.2.1" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "737bf4aa6df38f69a17efc233b4d0343cc5aa0d2c3b53e7007bd4c9866038ffd" 46 + 47 + [[package]] 48 + name = "atk" 49 + version = "0.15.1" 50 + source = "registry+https://github.com/rust-lang/crates.io-index" 51 + checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd" 52 + dependencies = [ 53 + "atk-sys", 54 + "bitflags", 55 + "glib", 56 + "libc", 57 + ] 58 + 59 + [[package]] 60 + name = "atk-sys" 61 + version = "0.15.1" 62 + source = "registry+https://github.com/rust-lang/crates.io-index" 63 + checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6" 64 + dependencies = [ 65 + "glib-sys", 66 + "gobject-sys", 67 + "libc", 68 + "system-deps 6.0.3", 69 + ] 70 + 71 + [[package]] 72 + name = "attohttpc" 73 + version = "0.22.0" 74 + source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7" 76 + dependencies = [ 77 + "flate2", 78 + "http", 79 + "log", 80 + "native-tls", 81 + "serde", 82 + "serde_json", 83 + "serde_urlencoded", 84 + "url", 85 + ] 86 + 87 + [[package]] 88 + name = "autocfg" 89 + version = "1.1.0" 90 + source = "registry+https://github.com/rust-lang/crates.io-index" 91 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 92 + 93 + [[package]] 94 + name = "base64" 95 + version = "0.13.1" 96 + source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 98 + 99 + [[package]] 100 + name = "bitflags" 101 + version = "1.3.2" 102 + source = "registry+https://github.com/rust-lang/crates.io-index" 103 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 104 + 105 + [[package]] 106 + name = "block" 107 + version = "0.1.6" 108 + source = "registry+https://github.com/rust-lang/crates.io-index" 109 + checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" 110 + 111 + [[package]] 112 + name = "block-buffer" 113 + version = "0.10.3" 114 + source = "registry+https://github.com/rust-lang/crates.io-index" 115 + checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e" 116 + dependencies = [ 117 + "generic-array", 118 + ] 119 + 120 + [[package]] 121 + name = "brotli" 122 + version = "3.3.4" 123 + source = "registry+https://github.com/rust-lang/crates.io-index" 124 + checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68" 125 + dependencies = [ 126 + "alloc-no-stdlib", 127 + "alloc-stdlib", 128 + "brotli-decompressor", 129 + ] 130 + 131 + [[package]] 132 + name = "brotli-decompressor" 133 + version = "2.3.4" 134 + source = "registry+https://github.com/rust-lang/crates.io-index" 135 + checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744" 136 + dependencies = [ 137 + "alloc-no-stdlib", 138 + "alloc-stdlib", 139 + ] 140 + 141 + [[package]] 142 + name = "bstr" 143 + version = "1.1.0" 144 + source = "registry+https://github.com/rust-lang/crates.io-index" 145 + checksum = "b45ea9b00a7b3f2988e9a65ad3917e62123c38dba709b666506207be96d1790b" 146 + dependencies = [ 147 + "memchr", 148 + "serde", 149 + ] 150 + 151 + [[package]] 152 + name = "bumpalo" 153 + version = "3.12.0" 154 + source = "registry+https://github.com/rust-lang/crates.io-index" 155 + checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" 156 + 157 + [[package]] 158 + name = "bytemuck" 159 + version = "1.13.0" 160 + source = "registry+https://github.com/rust-lang/crates.io-index" 161 + checksum = "c041d3eab048880cb0b86b256447da3f18859a163c3b8d8893f4e6368abe6393" 162 + 163 + [[package]] 164 + name = "byteorder" 165 + version = "1.4.3" 166 + source = "registry+https://github.com/rust-lang/crates.io-index" 167 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 168 + 169 + [[package]] 170 + name = "bytes" 171 + version = "1.3.0" 172 + source = "registry+https://github.com/rust-lang/crates.io-index" 173 + checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" 174 + 175 + [[package]] 176 + name = "cairo-rs" 177 + version = "0.15.12" 178 + source = "registry+https://github.com/rust-lang/crates.io-index" 179 + checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc" 180 + dependencies = [ 181 + "bitflags", 182 + "cairo-sys-rs", 183 + "glib", 184 + "libc", 185 + "thiserror", 186 + ] 187 + 188 + [[package]] 189 + name = "cairo-sys-rs" 190 + version = "0.15.1" 191 + source = "registry+https://github.com/rust-lang/crates.io-index" 192 + checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8" 193 + dependencies = [ 194 + "glib-sys", 195 + "libc", 196 + "system-deps 6.0.3", 197 + ] 198 + 199 + [[package]] 200 + name = "cargo_toml" 201 + version = "0.13.3" 202 + source = "registry+https://github.com/rust-lang/crates.io-index" 203 + checksum = "497049e9477329f8f6a559972ee42e117487d01d1e8c2cc9f836ea6fa23a9e1a" 204 + dependencies = [ 205 + "serde", 206 + "toml", 207 + ] 208 + 209 + [[package]] 210 + name = "cc" 211 + version = "1.0.78" 212 + source = "registry+https://github.com/rust-lang/crates.io-index" 213 + checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" 214 + 215 + [[package]] 216 + name = "cesu8" 217 + version = "1.1.0" 218 + source = "registry+https://github.com/rust-lang/crates.io-index" 219 + checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 220 + 221 + [[package]] 222 + name = "cfb" 223 + version = "0.6.1" 224 + source = "registry+https://github.com/rust-lang/crates.io-index" 225 + checksum = "74f89d248799e3f15f91b70917f65381062a01bb8e222700ea0e5a7ff9785f9c" 226 + dependencies = [ 227 + "byteorder", 228 + "uuid 0.8.2", 229 + ] 230 + 231 + [[package]] 232 + name = "cfg-expr" 233 + version = "0.9.1" 234 + source = "registry+https://github.com/rust-lang/crates.io-index" 235 + checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7" 236 + dependencies = [ 237 + "smallvec", 238 + ] 239 + 240 + [[package]] 241 + name = "cfg-expr" 242 + version = "0.11.0" 243 + source = "registry+https://github.com/rust-lang/crates.io-index" 244 + checksum = "b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa" 245 + dependencies = [ 246 + "smallvec", 247 + ] 248 + 249 + [[package]] 250 + name = "cfg-if" 251 + version = "1.0.0" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 254 + 255 + [[package]] 256 + name = "clap" 257 + version = "4.1.4" 258 + source = "registry+https://github.com/rust-lang/crates.io-index" 259 + checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76" 260 + dependencies = [ 261 + "bitflags", 262 + "clap_derive", 263 + "clap_lex", 264 + "is-terminal", 265 + "once_cell", 266 + "strsim", 267 + "termcolor", 268 + ] 269 + 270 + [[package]] 271 + name = "clap-utilities" 272 + version = "0.2.0" 273 + source = "registry+https://github.com/rust-lang/crates.io-index" 274 + checksum = "15bcff807ef65113605e59223ac0ce77adc2cc0976e3ece014e0f2c17e4a7798" 275 + dependencies = [ 276 + "clap", 277 + "clap_complete", 278 + "pipe-trait", 279 + "thiserror", 280 + ] 281 + 282 + [[package]] 283 + name = "clap_complete" 284 + version = "4.1.1" 285 + source = "registry+https://github.com/rust-lang/crates.io-index" 286 + checksum = "3d6540eedc41f8a5a76cf3d8d458057dcdf817be4158a55b5f861f7a5483de75" 287 + dependencies = [ 288 + "clap", 289 + ] 290 + 291 + [[package]] 292 + name = "clap_derive" 293 + version = "4.1.0" 294 + source = "registry+https://github.com/rust-lang/crates.io-index" 295 + checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" 296 + dependencies = [ 297 + "heck 0.4.0", 298 + "proc-macro-error", 299 + "proc-macro2", 300 + "quote", 301 + "syn", 302 + ] 303 + 304 + [[package]] 305 + name = "clap_lex" 306 + version = "0.3.1" 307 + source = "registry+https://github.com/rust-lang/crates.io-index" 308 + checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" 309 + dependencies = [ 310 + "os_str_bytes", 311 + ] 312 + 313 + [[package]] 314 + name = "cocoa" 315 + version = "0.24.1" 316 + source = "registry+https://github.com/rust-lang/crates.io-index" 317 + checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a" 318 + dependencies = [ 319 + "bitflags", 320 + "block", 321 + "cocoa-foundation", 322 + "core-foundation", 323 + "core-graphics", 324 + "foreign-types", 325 + "libc", 326 + "objc", 327 + ] 328 + 329 + [[package]] 330 + name = "cocoa-foundation" 331 + version = "0.1.0" 332 + source = "registry+https://github.com/rust-lang/crates.io-index" 333 + checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318" 334 + dependencies = [ 335 + "bitflags", 336 + "block", 337 + "core-foundation", 338 + "core-graphics-types", 339 + "foreign-types", 340 + "libc", 341 + "objc", 342 + ] 343 + 344 + [[package]] 345 + name = "color_quant" 346 + version = "1.1.0" 347 + source = "registry+https://github.com/rust-lang/crates.io-index" 348 + checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 349 + 350 + [[package]] 351 + name = "combine" 352 + version = "4.6.6" 353 + source = "registry+https://github.com/rust-lang/crates.io-index" 354 + checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 355 + dependencies = [ 356 + "bytes", 357 + "memchr", 358 + ] 359 + 360 + [[package]] 361 + name = "convert_case" 362 + version = "0.4.0" 363 + source = "registry+https://github.com/rust-lang/crates.io-index" 364 + checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 365 + 366 + [[package]] 367 + name = "core-foundation" 368 + version = "0.9.3" 369 + source = "registry+https://github.com/rust-lang/crates.io-index" 370 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 371 + dependencies = [ 372 + "core-foundation-sys", 373 + "libc", 374 + ] 375 + 376 + [[package]] 377 + name = "core-foundation-sys" 378 + version = "0.8.3" 379 + source = "registry+https://github.com/rust-lang/crates.io-index" 380 + checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" 381 + 382 + [[package]] 383 + name = "core-graphics" 384 + version = "0.22.3" 385 + source = "registry+https://github.com/rust-lang/crates.io-index" 386 + checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 387 + dependencies = [ 388 + "bitflags", 389 + "core-foundation", 390 + "core-graphics-types", 391 + "foreign-types", 392 + "libc", 393 + ] 394 + 395 + [[package]] 396 + name = "core-graphics-types" 397 + version = "0.1.1" 398 + source = "registry+https://github.com/rust-lang/crates.io-index" 399 + checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" 400 + dependencies = [ 401 + "bitflags", 402 + "core-foundation", 403 + "foreign-types", 404 + "libc", 405 + ] 406 + 407 + [[package]] 408 + name = "cpufeatures" 409 + version = "0.2.5" 410 + source = "registry+https://github.com/rust-lang/crates.io-index" 411 + checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" 412 + dependencies = [ 413 + "libc", 414 + ] 415 + 416 + [[package]] 417 + name = "crc32fast" 418 + version = "1.3.2" 419 + source = "registry+https://github.com/rust-lang/crates.io-index" 420 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 421 + dependencies = [ 422 + "cfg-if", 423 + ] 424 + 425 + [[package]] 426 + name = "crossbeam-channel" 427 + version = "0.5.6" 428 + source = "registry+https://github.com/rust-lang/crates.io-index" 429 + checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" 430 + dependencies = [ 431 + "cfg-if", 432 + "crossbeam-utils", 433 + ] 434 + 435 + [[package]] 436 + name = "crossbeam-deque" 437 + version = "0.8.2" 438 + source = "registry+https://github.com/rust-lang/crates.io-index" 439 + checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" 440 + dependencies = [ 441 + "cfg-if", 442 + "crossbeam-epoch", 443 + "crossbeam-utils", 444 + ] 445 + 446 + [[package]] 447 + name = "crossbeam-epoch" 448 + version = "0.9.13" 449 + source = "registry+https://github.com/rust-lang/crates.io-index" 450 + checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a" 451 + dependencies = [ 452 + "autocfg", 453 + "cfg-if", 454 + "crossbeam-utils", 455 + "memoffset 0.7.1", 456 + "scopeguard", 457 + ] 458 + 459 + [[package]] 460 + name = "crossbeam-utils" 461 + version = "0.8.14" 462 + source = "registry+https://github.com/rust-lang/crates.io-index" 463 + checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f" 464 + dependencies = [ 465 + "cfg-if", 466 + ] 467 + 468 + [[package]] 469 + name = "crypto-common" 470 + version = "0.1.6" 471 + source = "registry+https://github.com/rust-lang/crates.io-index" 472 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 473 + dependencies = [ 474 + "generic-array", 475 + "typenum", 476 + ] 477 + 478 + [[package]] 479 + name = "cssparser" 480 + version = "0.27.2" 481 + source = "registry+https://github.com/rust-lang/crates.io-index" 482 + checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" 483 + dependencies = [ 484 + "cssparser-macros", 485 + "dtoa-short", 486 + "itoa 0.4.8", 487 + "matches", 488 + "phf 0.8.0", 489 + "proc-macro2", 490 + "quote", 491 + "smallvec", 492 + "syn", 493 + ] 494 + 495 + [[package]] 496 + name = "cssparser-macros" 497 + version = "0.6.0" 498 + source = "registry+https://github.com/rust-lang/crates.io-index" 499 + checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e" 500 + dependencies = [ 501 + "quote", 502 + "syn", 503 + ] 504 + 505 + [[package]] 506 + name = "ctor" 507 + version = "0.1.26" 508 + source = "registry+https://github.com/rust-lang/crates.io-index" 509 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 510 + dependencies = [ 511 + "quote", 512 + "syn", 513 + ] 514 + 515 + [[package]] 516 + name = "cty" 517 + version = "0.2.2" 518 + source = "registry+https://github.com/rust-lang/crates.io-index" 519 + checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35" 520 + 521 + [[package]] 522 + name = "darling" 523 + version = "0.12.4" 524 + source = "registry+https://github.com/rust-lang/crates.io-index" 525 + checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c" 526 + dependencies = [ 527 + "darling_core 0.12.4", 528 + "darling_macro 0.12.4", 529 + ] 530 + 531 + [[package]] 532 + name = "darling" 533 + version = "0.13.4" 534 + source = "registry+https://github.com/rust-lang/crates.io-index" 535 + checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" 536 + dependencies = [ 537 + "darling_core 0.13.4", 538 + "darling_macro 0.13.4", 539 + ] 540 + 541 + [[package]] 542 + name = "darling_core" 543 + version = "0.12.4" 544 + source = "registry+https://github.com/rust-lang/crates.io-index" 545 + checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36" 546 + dependencies = [ 547 + "fnv", 548 + "ident_case", 549 + "proc-macro2", 550 + "quote", 551 + "strsim", 552 + "syn", 553 + ] 554 + 555 + [[package]] 556 + name = "darling_core" 557 + version = "0.13.4" 558 + source = "registry+https://github.com/rust-lang/crates.io-index" 559 + checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" 560 + dependencies = [ 561 + "fnv", 562 + "ident_case", 563 + "proc-macro2", 564 + "quote", 565 + "strsim", 566 + "syn", 567 + ] 568 + 569 + [[package]] 570 + name = "darling_macro" 571 + version = "0.12.4" 572 + source = "registry+https://github.com/rust-lang/crates.io-index" 573 + checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a" 574 + dependencies = [ 575 + "darling_core 0.12.4", 576 + "quote", 577 + "syn", 578 + ] 579 + 580 + [[package]] 581 + name = "darling_macro" 582 + version = "0.13.4" 583 + source = "registry+https://github.com/rust-lang/crates.io-index" 584 + checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" 585 + dependencies = [ 586 + "darling_core 0.13.4", 587 + "quote", 588 + "syn", 589 + ] 590 + 591 + [[package]] 592 + name = "dbus" 593 + version = "0.9.7" 594 + source = "registry+https://github.com/rust-lang/crates.io-index" 595 + checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b" 596 + dependencies = [ 597 + "libc", 598 + "libdbus-sys", 599 + "winapi", 600 + ] 601 + 602 + [[package]] 603 + name = "derive_builder" 604 + version = "0.10.2" 605 + source = "registry+https://github.com/rust-lang/crates.io-index" 606 + checksum = "d13202debe11181040ae9063d739fa32cfcaaebe2275fe387703460ae2365b30" 607 + dependencies = [ 608 + "derive_builder_macro", 609 + ] 610 + 611 + [[package]] 612 + name = "derive_builder_core" 613 + version = "0.10.2" 614 + source = "registry+https://github.com/rust-lang/crates.io-index" 615 + checksum = "66e616858f6187ed828df7c64a6d71720d83767a7f19740b2d1b6fe6327b36e5" 616 + dependencies = [ 617 + "darling 0.12.4", 618 + "proc-macro2", 619 + "quote", 620 + "syn", 621 + ] 622 + 623 + [[package]] 624 + name = "derive_builder_macro" 625 + version = "0.10.2" 626 + source = "registry+https://github.com/rust-lang/crates.io-index" 627 + checksum = "58a94ace95092c5acb1e97a7e846b310cfbd499652f72297da7493f618a98d73" 628 + dependencies = [ 629 + "derive_builder_core", 630 + "syn", 631 + ] 632 + 633 + [[package]] 634 + name = "derive_more" 635 + version = "0.99.17" 636 + source = "registry+https://github.com/rust-lang/crates.io-index" 637 + checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 638 + dependencies = [ 639 + "convert_case", 640 + "proc-macro2", 641 + "quote", 642 + "rustc_version 0.4.0", 643 + "syn", 644 + ] 645 + 646 + [[package]] 647 + name = "digest" 648 + version = "0.10.6" 649 + source = "registry+https://github.com/rust-lang/crates.io-index" 650 + checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" 651 + dependencies = [ 652 + "block-buffer", 653 + "crypto-common", 654 + ] 655 + 656 + [[package]] 657 + name = "dirs-next" 658 + version = "2.0.0" 659 + source = "registry+https://github.com/rust-lang/crates.io-index" 660 + checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" 661 + dependencies = [ 662 + "cfg-if", 663 + "dirs-sys-next", 664 + ] 665 + 666 + [[package]] 667 + name = "dirs-sys-next" 668 + version = "0.1.2" 669 + source = "registry+https://github.com/rust-lang/crates.io-index" 670 + checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" 671 + dependencies = [ 672 + "libc", 673 + "redox_users", 674 + "winapi", 675 + ] 676 + 677 + [[package]] 678 + name = "dispatch" 679 + version = "0.2.0" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 682 + 683 + [[package]] 684 + name = "dtoa" 685 + version = "0.4.8" 686 + source = "registry+https://github.com/rust-lang/crates.io-index" 687 + checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" 688 + 689 + [[package]] 690 + name = "dtoa-short" 691 + version = "0.3.3" 692 + source = "registry+https://github.com/rust-lang/crates.io-index" 693 + checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6" 694 + dependencies = [ 695 + "dtoa", 696 + ] 697 + 698 + [[package]] 699 + name = "dunce" 700 + version = "1.0.3" 701 + source = "registry+https://github.com/rust-lang/crates.io-index" 702 + checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c" 703 + 704 + [[package]] 705 + name = "either" 706 + version = "1.8.1" 707 + source = "registry+https://github.com/rust-lang/crates.io-index" 708 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 709 + 710 + [[package]] 711 + name = "embed_plist" 712 + version = "1.2.2" 713 + source = "registry+https://github.com/rust-lang/crates.io-index" 714 + checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" 715 + 716 + [[package]] 717 + name = "encoding_rs" 718 + version = "0.8.31" 719 + source = "registry+https://github.com/rust-lang/crates.io-index" 720 + checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" 721 + dependencies = [ 722 + "cfg-if", 723 + ] 724 + 725 + [[package]] 726 + name = "errno" 727 + version = "0.2.8" 728 + source = "registry+https://github.com/rust-lang/crates.io-index" 729 + checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1" 730 + dependencies = [ 731 + "errno-dragonfly", 732 + "libc", 733 + "winapi", 734 + ] 735 + 736 + [[package]] 737 + name = "errno-dragonfly" 738 + version = "0.1.2" 739 + source = "registry+https://github.com/rust-lang/crates.io-index" 740 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 741 + dependencies = [ 742 + "cc", 743 + "libc", 744 + ] 745 + 746 + [[package]] 747 + name = "fastrand" 748 + version = "1.8.0" 749 + source = "registry+https://github.com/rust-lang/crates.io-index" 750 + checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 751 + dependencies = [ 752 + "instant", 753 + ] 754 + 755 + [[package]] 756 + name = "field-offset" 757 + version = "0.3.4" 758 + source = "registry+https://github.com/rust-lang/crates.io-index" 759 + checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92" 760 + dependencies = [ 761 + "memoffset 0.6.5", 762 + "rustc_version 0.3.3", 763 + ] 764 + 765 + [[package]] 766 + name = "filetime" 767 + version = "0.2.19" 768 + source = "registry+https://github.com/rust-lang/crates.io-index" 769 + checksum = "4e884668cd0c7480504233e951174ddc3b382f7c2666e3b7310b5c4e7b0c37f9" 770 + dependencies = [ 771 + "cfg-if", 772 + "libc", 773 + "redox_syscall", 774 + "windows-sys 0.42.0", 775 + ] 776 + 777 + [[package]] 778 + name = "flate2" 779 + version = "1.0.25" 780 + source = "registry+https://github.com/rust-lang/crates.io-index" 781 + checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" 782 + dependencies = [ 783 + "crc32fast", 784 + "miniz_oxide", 785 + ] 786 + 787 + [[package]] 788 + name = "fmt-iter" 789 + version = "0.2.1" 790 + source = "registry+https://github.com/rust-lang/crates.io-index" 791 + checksum = "d0b9289d76691c7084d8830f1d0a29ddefbad768f8b5f276e012840bb0fca610" 792 + dependencies = [ 793 + "derive_more", 794 + "itertools", 795 + ] 796 + 797 + [[package]] 798 + name = "fnv" 799 + version = "1.0.7" 800 + source = "registry+https://github.com/rust-lang/crates.io-index" 801 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 802 + 803 + [[package]] 804 + name = "foreign-types" 805 + version = "0.3.2" 806 + source = "registry+https://github.com/rust-lang/crates.io-index" 807 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 808 + dependencies = [ 809 + "foreign-types-shared", 810 + ] 811 + 812 + [[package]] 813 + name = "foreign-types-shared" 814 + version = "0.1.1" 815 + source = "registry+https://github.com/rust-lang/crates.io-index" 816 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 817 + 818 + [[package]] 819 + name = "form_urlencoded" 820 + version = "1.1.0" 821 + source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 823 + dependencies = [ 824 + "percent-encoding", 825 + ] 826 + 827 + [[package]] 828 + name = "futf" 829 + version = "0.1.5" 830 + source = "registry+https://github.com/rust-lang/crates.io-index" 831 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 832 + dependencies = [ 833 + "mac", 834 + "new_debug_unreachable", 835 + ] 836 + 837 + [[package]] 838 + name = "futures-channel" 839 + version = "0.3.25" 840 + source = "registry+https://github.com/rust-lang/crates.io-index" 841 + checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" 842 + dependencies = [ 843 + "futures-core", 844 + ] 845 + 846 + [[package]] 847 + name = "futures-core" 848 + version = "0.3.25" 849 + source = "registry+https://github.com/rust-lang/crates.io-index" 850 + checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" 851 + 852 + [[package]] 853 + name = "futures-executor" 854 + version = "0.3.25" 855 + source = "registry+https://github.com/rust-lang/crates.io-index" 856 + checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" 857 + dependencies = [ 858 + "futures-core", 859 + "futures-task", 860 + "futures-util", 861 + ] 862 + 863 + [[package]] 864 + name = "futures-io" 865 + version = "0.3.25" 866 + source = "registry+https://github.com/rust-lang/crates.io-index" 867 + checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" 868 + 869 + [[package]] 870 + name = "futures-macro" 871 + version = "0.3.25" 872 + source = "registry+https://github.com/rust-lang/crates.io-index" 873 + checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" 874 + dependencies = [ 875 + "proc-macro2", 876 + "quote", 877 + "syn", 878 + ] 879 + 880 + [[package]] 881 + name = "futures-task" 882 + version = "0.3.25" 883 + source = "registry+https://github.com/rust-lang/crates.io-index" 884 + checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" 885 + 886 + [[package]] 887 + name = "futures-util" 888 + version = "0.3.25" 889 + source = "registry+https://github.com/rust-lang/crates.io-index" 890 + checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" 891 + dependencies = [ 892 + "futures-core", 893 + "futures-macro", 894 + "futures-task", 895 + "pin-project-lite", 896 + "pin-utils", 897 + "slab", 898 + ] 899 + 900 + [[package]] 901 + name = "fxhash" 902 + version = "0.2.1" 903 + source = "registry+https://github.com/rust-lang/crates.io-index" 904 + checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" 905 + dependencies = [ 906 + "byteorder", 907 + ] 908 + 909 + [[package]] 910 + name = "gdk" 911 + version = "0.15.4" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8" 914 + dependencies = [ 915 + "bitflags", 916 + "cairo-rs", 917 + "gdk-pixbuf", 918 + "gdk-sys", 919 + "gio", 920 + "glib", 921 + "libc", 922 + "pango", 923 + ] 924 + 925 + [[package]] 926 + name = "gdk-pixbuf" 927 + version = "0.15.11" 928 + source = "registry+https://github.com/rust-lang/crates.io-index" 929 + checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a" 930 + dependencies = [ 931 + "bitflags", 932 + "gdk-pixbuf-sys", 933 + "gio", 934 + "glib", 935 + "libc", 936 + ] 937 + 938 + [[package]] 939 + name = "gdk-pixbuf-sys" 940 + version = "0.15.10" 941 + source = "registry+https://github.com/rust-lang/crates.io-index" 942 + checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7" 943 + dependencies = [ 944 + "gio-sys", 945 + "glib-sys", 946 + "gobject-sys", 947 + "libc", 948 + "system-deps 6.0.3", 949 + ] 950 + 951 + [[package]] 952 + name = "gdk-sys" 953 + version = "0.15.1" 954 + source = "registry+https://github.com/rust-lang/crates.io-index" 955 + checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88" 956 + dependencies = [ 957 + "cairo-sys-rs", 958 + "gdk-pixbuf-sys", 959 + "gio-sys", 960 + "glib-sys", 961 + "gobject-sys", 962 + "libc", 963 + "pango-sys", 964 + "pkg-config", 965 + "system-deps 6.0.3", 966 + ] 967 + 968 + [[package]] 969 + name = "gdkx11-sys" 970 + version = "0.15.1" 971 + source = "registry+https://github.com/rust-lang/crates.io-index" 972 + checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178" 973 + dependencies = [ 974 + "gdk-sys", 975 + "glib-sys", 976 + "libc", 977 + "system-deps 6.0.3", 978 + "x11", 979 + ] 980 + 981 + [[package]] 982 + name = "generator" 983 + version = "0.7.2" 984 + source = "registry+https://github.com/rust-lang/crates.io-index" 985 + checksum = "d266041a359dfa931b370ef684cceb84b166beb14f7f0421f4a6a3d0c446d12e" 986 + dependencies = [ 987 + "cc", 988 + "libc", 989 + "log", 990 + "rustversion", 991 + "windows 0.39.0", 992 + ] 993 + 994 + [[package]] 995 + name = "generic-array" 996 + version = "0.14.6" 997 + source = "registry+https://github.com/rust-lang/crates.io-index" 998 + checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" 999 + dependencies = [ 1000 + "typenum", 1001 + "version_check", 1002 + ] 1003 + 1004 + [[package]] 1005 + name = "getrandom" 1006 + version = "0.1.16" 1007 + source = "registry+https://github.com/rust-lang/crates.io-index" 1008 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1009 + dependencies = [ 1010 + "cfg-if", 1011 + "libc", 1012 + "wasi 0.9.0+wasi-snapshot-preview1", 1013 + ] 1014 + 1015 + [[package]] 1016 + name = "getrandom" 1017 + version = "0.2.8" 1018 + source = "registry+https://github.com/rust-lang/crates.io-index" 1019 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 1020 + dependencies = [ 1021 + "cfg-if", 1022 + "libc", 1023 + "wasi 0.11.0+wasi-snapshot-preview1", 1024 + ] 1025 + 1026 + [[package]] 1027 + name = "gio" 1028 + version = "0.15.12" 1029 + source = "registry+https://github.com/rust-lang/crates.io-index" 1030 + checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b" 1031 + dependencies = [ 1032 + "bitflags", 1033 + "futures-channel", 1034 + "futures-core", 1035 + "futures-io", 1036 + "gio-sys", 1037 + "glib", 1038 + "libc", 1039 + "once_cell", 1040 + "thiserror", 1041 + ] 1042 + 1043 + [[package]] 1044 + name = "gio-sys" 1045 + version = "0.15.10" 1046 + source = "registry+https://github.com/rust-lang/crates.io-index" 1047 + checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d" 1048 + dependencies = [ 1049 + "glib-sys", 1050 + "gobject-sys", 1051 + "libc", 1052 + "system-deps 6.0.3", 1053 + "winapi", 1054 + ] 1055 + 1056 + [[package]] 1057 + name = "glib" 1058 + version = "0.15.12" 1059 + source = "registry+https://github.com/rust-lang/crates.io-index" 1060 + checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d" 1061 + dependencies = [ 1062 + "bitflags", 1063 + "futures-channel", 1064 + "futures-core", 1065 + "futures-executor", 1066 + "futures-task", 1067 + "glib-macros", 1068 + "glib-sys", 1069 + "gobject-sys", 1070 + "libc", 1071 + "once_cell", 1072 + "smallvec", 1073 + "thiserror", 1074 + ] 1075 + 1076 + [[package]] 1077 + name = "glib-macros" 1078 + version = "0.15.11" 1079 + source = "registry+https://github.com/rust-lang/crates.io-index" 1080 + checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64" 1081 + dependencies = [ 1082 + "anyhow", 1083 + "heck 0.4.0", 1084 + "proc-macro-crate", 1085 + "proc-macro-error", 1086 + "proc-macro2", 1087 + "quote", 1088 + "syn", 1089 + ] 1090 + 1091 + [[package]] 1092 + name = "glib-sys" 1093 + version = "0.15.10" 1094 + source = "registry+https://github.com/rust-lang/crates.io-index" 1095 + checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4" 1096 + dependencies = [ 1097 + "libc", 1098 + "system-deps 6.0.3", 1099 + ] 1100 + 1101 + [[package]] 1102 + name = "glob" 1103 + version = "0.3.1" 1104 + source = "registry+https://github.com/rust-lang/crates.io-index" 1105 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1106 + 1107 + [[package]] 1108 + name = "globset" 1109 + version = "0.4.10" 1110 + source = "registry+https://github.com/rust-lang/crates.io-index" 1111 + checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" 1112 + dependencies = [ 1113 + "aho-corasick", 1114 + "bstr", 1115 + "fnv", 1116 + "log", 1117 + "regex", 1118 + ] 1119 + 1120 + [[package]] 1121 + name = "gobject-sys" 1122 + version = "0.15.10" 1123 + source = "registry+https://github.com/rust-lang/crates.io-index" 1124 + checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a" 1125 + dependencies = [ 1126 + "glib-sys", 1127 + "libc", 1128 + "system-deps 6.0.3", 1129 + ] 1130 + 1131 + [[package]] 1132 + name = "gtk" 1133 + version = "0.15.5" 1134 + source = "registry+https://github.com/rust-lang/crates.io-index" 1135 + checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0" 1136 + dependencies = [ 1137 + "atk", 1138 + "bitflags", 1139 + "cairo-rs", 1140 + "field-offset", 1141 + "futures-channel", 1142 + "gdk", 1143 + "gdk-pixbuf", 1144 + "gio", 1145 + "glib", 1146 + "gtk-sys", 1147 + "gtk3-macros", 1148 + "libc", 1149 + "once_cell", 1150 + "pango", 1151 + "pkg-config", 1152 + ] 1153 + 1154 + [[package]] 1155 + name = "gtk-sys" 1156 + version = "0.15.3" 1157 + source = "registry+https://github.com/rust-lang/crates.io-index" 1158 + checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84" 1159 + dependencies = [ 1160 + "atk-sys", 1161 + "cairo-sys-rs", 1162 + "gdk-pixbuf-sys", 1163 + "gdk-sys", 1164 + "gio-sys", 1165 + "glib-sys", 1166 + "gobject-sys", 1167 + "libc", 1168 + "pango-sys", 1169 + "system-deps 6.0.3", 1170 + ] 1171 + 1172 + [[package]] 1173 + name = "gtk3-macros" 1174 + version = "0.15.4" 1175 + source = "registry+https://github.com/rust-lang/crates.io-index" 1176 + checksum = "24f518afe90c23fba585b2d7697856f9e6a7bbc62f65588035e66f6afb01a2e9" 1177 + dependencies = [ 1178 + "anyhow", 1179 + "proc-macro-crate", 1180 + "proc-macro-error", 1181 + "proc-macro2", 1182 + "quote", 1183 + "syn", 1184 + ] 1185 + 1186 + [[package]] 1187 + name = "hashbrown" 1188 + version = "0.12.3" 1189 + source = "registry+https://github.com/rust-lang/crates.io-index" 1190 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1191 + 1192 + [[package]] 1193 + name = "heck" 1194 + version = "0.3.3" 1195 + source = "registry+https://github.com/rust-lang/crates.io-index" 1196 + checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" 1197 + dependencies = [ 1198 + "unicode-segmentation", 1199 + ] 1200 + 1201 + [[package]] 1202 + name = "heck" 1203 + version = "0.4.0" 1204 + source = "registry+https://github.com/rust-lang/crates.io-index" 1205 + checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" 1206 + 1207 + [[package]] 1208 + name = "hermit-abi" 1209 + version = "0.2.6" 1210 + source = "registry+https://github.com/rust-lang/crates.io-index" 1211 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1212 + dependencies = [ 1213 + "libc", 1214 + ] 1215 + 1216 + [[package]] 1217 + name = "html5ever" 1218 + version = "0.25.2" 1219 + source = "registry+https://github.com/rust-lang/crates.io-index" 1220 + checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148" 1221 + dependencies = [ 1222 + "log", 1223 + "mac", 1224 + "markup5ever", 1225 + "proc-macro2", 1226 + "quote", 1227 + "syn", 1228 + ] 1229 + 1230 + [[package]] 1231 + name = "http" 1232 + version = "0.2.8" 1233 + source = "registry+https://github.com/rust-lang/crates.io-index" 1234 + checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" 1235 + dependencies = [ 1236 + "bytes", 1237 + "fnv", 1238 + "itoa 1.0.5", 1239 + ] 1240 + 1241 + [[package]] 1242 + name = "http-range" 1243 + version = "0.1.5" 1244 + source = "registry+https://github.com/rust-lang/crates.io-index" 1245 + checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573" 1246 + 1247 + [[package]] 1248 + name = "ico" 1249 + version = "0.2.0" 1250 + source = "registry+https://github.com/rust-lang/crates.io-index" 1251 + checksum = "031530fe562d8c8d71c0635013d6d155bbfe8ba0aa4b4d2d24ce8af6b71047bd" 1252 + dependencies = [ 1253 + "byteorder", 1254 + "png", 1255 + ] 1256 + 1257 + [[package]] 1258 + name = "ident_case" 1259 + version = "1.0.1" 1260 + source = "registry+https://github.com/rust-lang/crates.io-index" 1261 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1262 + 1263 + [[package]] 1264 + name = "idna" 1265 + version = "0.3.0" 1266 + source = "registry+https://github.com/rust-lang/crates.io-index" 1267 + checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 1268 + dependencies = [ 1269 + "unicode-bidi", 1270 + "unicode-normalization", 1271 + ] 1272 + 1273 + [[package]] 1274 + name = "ignore" 1275 + version = "0.4.18" 1276 + source = "registry+https://github.com/rust-lang/crates.io-index" 1277 + checksum = "713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d" 1278 + dependencies = [ 1279 + "crossbeam-utils", 1280 + "globset", 1281 + "lazy_static", 1282 + "log", 1283 + "memchr", 1284 + "regex", 1285 + "same-file", 1286 + "thread_local", 1287 + "walkdir", 1288 + "winapi-util", 1289 + ] 1290 + 1291 + [[package]] 1292 + name = "image" 1293 + version = "0.24.5" 1294 + source = "registry+https://github.com/rust-lang/crates.io-index" 1295 + checksum = "69b7ea949b537b0fd0af141fff8c77690f2ce96f4f41f042ccb6c69c6c965945" 1296 + dependencies = [ 1297 + "bytemuck", 1298 + "byteorder", 1299 + "color_quant", 1300 + "num-rational", 1301 + "num-traits", 1302 + ] 1303 + 1304 + [[package]] 1305 + name = "indexmap" 1306 + version = "1.9.2" 1307 + source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" 1309 + dependencies = [ 1310 + "autocfg", 1311 + "hashbrown", 1312 + ] 1313 + 1314 + [[package]] 1315 + name = "infer" 1316 + version = "0.7.0" 1317 + source = "registry+https://github.com/rust-lang/crates.io-index" 1318 + checksum = "20b2b533137b9cad970793453d4f921c2e91312a6d88b1085c07bc15fc51bb3b" 1319 + dependencies = [ 1320 + "cfb", 1321 + ] 1322 + 1323 + [[package]] 1324 + name = "instant" 1325 + version = "0.1.12" 1326 + source = "registry+https://github.com/rust-lang/crates.io-index" 1327 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1328 + dependencies = [ 1329 + "cfg-if", 1330 + ] 1331 + 1332 + [[package]] 1333 + name = "io-lifetimes" 1334 + version = "1.0.4" 1335 + source = "registry+https://github.com/rust-lang/crates.io-index" 1336 + checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e" 1337 + dependencies = [ 1338 + "libc", 1339 + "windows-sys 0.42.0", 1340 + ] 1341 + 1342 + [[package]] 1343 + name = "is-terminal" 1344 + version = "0.4.2" 1345 + source = "registry+https://github.com/rust-lang/crates.io-index" 1346 + checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189" 1347 + dependencies = [ 1348 + "hermit-abi", 1349 + "io-lifetimes", 1350 + "rustix", 1351 + "windows-sys 0.42.0", 1352 + ] 1353 + 1354 + [[package]] 1355 + name = "itertools" 1356 + version = "0.10.5" 1357 + source = "registry+https://github.com/rust-lang/crates.io-index" 1358 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1359 + dependencies = [ 1360 + "either", 1361 + ] 1362 + 1363 + [[package]] 1364 + name = "itoa" 1365 + version = "0.4.8" 1366 + source = "registry+https://github.com/rust-lang/crates.io-index" 1367 + checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" 1368 + 1369 + [[package]] 1370 + name = "itoa" 1371 + version = "1.0.5" 1372 + source = "registry+https://github.com/rust-lang/crates.io-index" 1373 + checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" 1374 + 1375 + [[package]] 1376 + name = "javascriptcore-rs" 1377 + version = "0.16.0" 1378 + source = "registry+https://github.com/rust-lang/crates.io-index" 1379 + checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c" 1380 + dependencies = [ 1381 + "bitflags", 1382 + "glib", 1383 + "javascriptcore-rs-sys", 1384 + ] 1385 + 1386 + [[package]] 1387 + name = "javascriptcore-rs-sys" 1388 + version = "0.4.0" 1389 + source = "registry+https://github.com/rust-lang/crates.io-index" 1390 + checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c" 1391 + dependencies = [ 1392 + "glib-sys", 1393 + "gobject-sys", 1394 + "libc", 1395 + "system-deps 5.0.0", 1396 + ] 1397 + 1398 + [[package]] 1399 + name = "jni" 1400 + version = "0.20.0" 1401 + source = "registry+https://github.com/rust-lang/crates.io-index" 1402 + checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c" 1403 + dependencies = [ 1404 + "cesu8", 1405 + "combine", 1406 + "jni-sys", 1407 + "log", 1408 + "thiserror", 1409 + "walkdir", 1410 + ] 1411 + 1412 + [[package]] 1413 + name = "jni-sys" 1414 + version = "0.3.0" 1415 + source = "registry+https://github.com/rust-lang/crates.io-index" 1416 + checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 1417 + 1418 + [[package]] 1419 + name = "js-sys" 1420 + version = "0.3.60" 1421 + source = "registry+https://github.com/rust-lang/crates.io-index" 1422 + checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" 1423 + dependencies = [ 1424 + "wasm-bindgen", 1425 + ] 1426 + 1427 + [[package]] 1428 + name = "json-patch" 1429 + version = "0.2.7" 1430 + source = "registry+https://github.com/rust-lang/crates.io-index" 1431 + checksum = "eb3fa5a61630976fc4c353c70297f2e93f1930e3ccee574d59d618ccbd5154ce" 1432 + dependencies = [ 1433 + "serde", 1434 + "serde_json", 1435 + "treediff", 1436 + ] 1437 + 1438 + [[package]] 1439 + name = "kuchiki" 1440 + version = "0.8.1" 1441 + source = "registry+https://github.com/rust-lang/crates.io-index" 1442 + checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358" 1443 + dependencies = [ 1444 + "cssparser", 1445 + "html5ever", 1446 + "matches", 1447 + "selectors", 1448 + ] 1449 + 1450 + [[package]] 1451 + name = "lazy_static" 1452 + version = "1.4.0" 1453 + source = "registry+https://github.com/rust-lang/crates.io-index" 1454 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1455 + 1456 + [[package]] 1457 + name = "libc" 1458 + version = "0.2.139" 1459 + source = "registry+https://github.com/rust-lang/crates.io-index" 1460 + checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 1461 + 1462 + [[package]] 1463 + name = "libdbus-sys" 1464 + version = "0.2.3" 1465 + source = "registry+https://github.com/rust-lang/crates.io-index" 1466 + checksum = "2264f9d90a9b4e60a2dc722ad899ea0374f03c2e96e755fe22a8f551d4d5fb3c" 1467 + dependencies = [ 1468 + "pkg-config", 1469 + ] 1470 + 1471 + [[package]] 1472 + name = "line-wrap" 1473 + version = "0.1.1" 1474 + source = "registry+https://github.com/rust-lang/crates.io-index" 1475 + checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9" 1476 + dependencies = [ 1477 + "safemem", 1478 + ] 1479 + 1480 + [[package]] 1481 + name = "linux-raw-sys" 1482 + version = "0.1.4" 1483 + source = "registry+https://github.com/rust-lang/crates.io-index" 1484 + checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" 1485 + 1486 + [[package]] 1487 + name = "lock_api" 1488 + version = "0.4.9" 1489 + source = "registry+https://github.com/rust-lang/crates.io-index" 1490 + checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 1491 + dependencies = [ 1492 + "autocfg", 1493 + "scopeguard", 1494 + ] 1495 + 1496 + [[package]] 1497 + name = "log" 1498 + version = "0.4.17" 1499 + source = "registry+https://github.com/rust-lang/crates.io-index" 1500 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 1501 + dependencies = [ 1502 + "cfg-if", 1503 + ] 1504 + 1505 + [[package]] 1506 + name = "loom" 1507 + version = "0.5.6" 1508 + source = "registry+https://github.com/rust-lang/crates.io-index" 1509 + checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1510 + dependencies = [ 1511 + "cfg-if", 1512 + "generator", 1513 + "scoped-tls", 1514 + "serde", 1515 + "serde_json", 1516 + "tracing", 1517 + "tracing-subscriber", 1518 + ] 1519 + 1520 + [[package]] 1521 + name = "mac" 1522 + version = "0.1.1" 1523 + source = "registry+https://github.com/rust-lang/crates.io-index" 1524 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 1525 + 1526 + [[package]] 1527 + name = "mac-notification-sys" 1528 + version = "0.5.6" 1529 + source = "registry+https://github.com/rust-lang/crates.io-index" 1530 + checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5" 1531 + dependencies = [ 1532 + "cc", 1533 + "dirs-next", 1534 + "objc-foundation", 1535 + "objc_id", 1536 + "time", 1537 + ] 1538 + 1539 + [[package]] 1540 + name = "malloc_buf" 1541 + version = "0.0.6" 1542 + source = "registry+https://github.com/rust-lang/crates.io-index" 1543 + checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" 1544 + dependencies = [ 1545 + "libc", 1546 + ] 1547 + 1548 + [[package]] 1549 + name = "markup5ever" 1550 + version = "0.10.1" 1551 + source = "registry+https://github.com/rust-lang/crates.io-index" 1552 + checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd" 1553 + dependencies = [ 1554 + "log", 1555 + "phf 0.8.0", 1556 + "phf_codegen", 1557 + "string_cache", 1558 + "string_cache_codegen", 1559 + "tendril", 1560 + ] 1561 + 1562 + [[package]] 1563 + name = "matchers" 1564 + version = "0.1.0" 1565 + source = "registry+https://github.com/rust-lang/crates.io-index" 1566 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 1567 + dependencies = [ 1568 + "regex-automata", 1569 + ] 1570 + 1571 + [[package]] 1572 + name = "matches" 1573 + version = "0.1.10" 1574 + source = "registry+https://github.com/rust-lang/crates.io-index" 1575 + checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 1576 + 1577 + [[package]] 1578 + name = "memchr" 1579 + version = "2.5.0" 1580 + source = "registry+https://github.com/rust-lang/crates.io-index" 1581 + checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 1582 + 1583 + [[package]] 1584 + name = "memoffset" 1585 + version = "0.6.5" 1586 + source = "registry+https://github.com/rust-lang/crates.io-index" 1587 + checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 1588 + dependencies = [ 1589 + "autocfg", 1590 + ] 1591 + 1592 + [[package]] 1593 + name = "memoffset" 1594 + version = "0.7.1" 1595 + source = "registry+https://github.com/rust-lang/crates.io-index" 1596 + checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" 1597 + dependencies = [ 1598 + "autocfg", 1599 + ] 1600 + 1601 + [[package]] 1602 + name = "minisign-verify" 1603 + version = "0.2.1" 1604 + source = "registry+https://github.com/rust-lang/crates.io-index" 1605 + checksum = "933dca44d65cdd53b355d0b73d380a2ff5da71f87f036053188bf1eab6a19881" 1606 + 1607 + [[package]] 1608 + name = "miniz_oxide" 1609 + version = "0.6.2" 1610 + source = "registry+https://github.com/rust-lang/crates.io-index" 1611 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 1612 + dependencies = [ 1613 + "adler", 1614 + ] 1615 + 1616 + [[package]] 1617 + name = "native-tls" 1618 + version = "0.2.11" 1619 + source = "registry+https://github.com/rust-lang/crates.io-index" 1620 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1621 + dependencies = [ 1622 + "lazy_static", 1623 + "libc", 1624 + "log", 1625 + "openssl", 1626 + "openssl-probe", 1627 + "openssl-sys", 1628 + "schannel", 1629 + "security-framework", 1630 + "security-framework-sys", 1631 + "tempfile", 1632 + ] 1633 + 1634 + [[package]] 1635 + name = "ndk" 1636 + version = "0.6.0" 1637 + source = "registry+https://github.com/rust-lang/crates.io-index" 1638 + checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" 1639 + dependencies = [ 1640 + "bitflags", 1641 + "jni-sys", 1642 + "ndk-sys", 1643 + "num_enum", 1644 + "thiserror", 1645 + ] 1646 + 1647 + [[package]] 1648 + name = "ndk-context" 1649 + version = "0.1.1" 1650 + source = "registry+https://github.com/rust-lang/crates.io-index" 1651 + checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 1652 + 1653 + [[package]] 1654 + name = "ndk-sys" 1655 + version = "0.3.0" 1656 + source = "registry+https://github.com/rust-lang/crates.io-index" 1657 + checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" 1658 + dependencies = [ 1659 + "jni-sys", 1660 + ] 1661 + 1662 + [[package]] 1663 + name = "new_debug_unreachable" 1664 + version = "1.0.4" 1665 + source = "registry+https://github.com/rust-lang/crates.io-index" 1666 + checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" 1667 + 1668 + [[package]] 1669 + name = "nodrop" 1670 + version = "0.1.14" 1671 + source = "registry+https://github.com/rust-lang/crates.io-index" 1672 + checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" 1673 + 1674 + [[package]] 1675 + name = "nom8" 1676 + version = "0.2.0" 1677 + source = "registry+https://github.com/rust-lang/crates.io-index" 1678 + checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" 1679 + dependencies = [ 1680 + "memchr", 1681 + ] 1682 + 1683 + [[package]] 1684 + name = "notify-rust" 1685 + version = "4.7.0" 1686 + source = "registry+https://github.com/rust-lang/crates.io-index" 1687 + checksum = "3ce656bb6d22a93ae276a23de52d1aec5ba4db3ece3c0eb79dfd5add7384db6a" 1688 + dependencies = [ 1689 + "dbus", 1690 + "mac-notification-sys", 1691 + "tauri-winrt-notification", 1692 + ] 1693 + 1694 + [[package]] 1695 + name = "ntapi" 1696 + version = "0.4.0" 1697 + source = "registry+https://github.com/rust-lang/crates.io-index" 1698 + checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc" 1699 + dependencies = [ 1700 + "winapi", 1701 + ] 1702 + 1703 + [[package]] 1704 + name = "nu-ansi-term" 1705 + version = "0.46.0" 1706 + source = "registry+https://github.com/rust-lang/crates.io-index" 1707 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1708 + dependencies = [ 1709 + "overload", 1710 + "winapi", 1711 + ] 1712 + 1713 + [[package]] 1714 + name = "num-integer" 1715 + version = "0.1.45" 1716 + source = "registry+https://github.com/rust-lang/crates.io-index" 1717 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 1718 + dependencies = [ 1719 + "autocfg", 1720 + "num-traits", 1721 + ] 1722 + 1723 + [[package]] 1724 + name = "num-rational" 1725 + version = "0.4.1" 1726 + source = "registry+https://github.com/rust-lang/crates.io-index" 1727 + checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" 1728 + dependencies = [ 1729 + "autocfg", 1730 + "num-integer", 1731 + "num-traits", 1732 + ] 1733 + 1734 + [[package]] 1735 + name = "num-traits" 1736 + version = "0.2.15" 1737 + source = "registry+https://github.com/rust-lang/crates.io-index" 1738 + checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 1739 + dependencies = [ 1740 + "autocfg", 1741 + ] 1742 + 1743 + [[package]] 1744 + name = "num_cpus" 1745 + version = "1.15.0" 1746 + source = "registry+https://github.com/rust-lang/crates.io-index" 1747 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 1748 + dependencies = [ 1749 + "hermit-abi", 1750 + "libc", 1751 + ] 1752 + 1753 + [[package]] 1754 + name = "num_enum" 1755 + version = "0.5.9" 1756 + source = "registry+https://github.com/rust-lang/crates.io-index" 1757 + checksum = "8d829733185c1ca374f17e52b762f24f535ec625d2cc1f070e34c8a9068f341b" 1758 + dependencies = [ 1759 + "num_enum_derive", 1760 + ] 1761 + 1762 + [[package]] 1763 + name = "num_enum_derive" 1764 + version = "0.5.9" 1765 + source = "registry+https://github.com/rust-lang/crates.io-index" 1766 + checksum = "2be1598bf1c313dcdd12092e3f1920f463462525a21b7b4e11b4168353d0123e" 1767 + dependencies = [ 1768 + "proc-macro-crate", 1769 + "proc-macro2", 1770 + "quote", 1771 + "syn", 1772 + ] 1773 + 1774 + [[package]] 1775 + name = "objc" 1776 + version = "0.2.7" 1777 + source = "registry+https://github.com/rust-lang/crates.io-index" 1778 + checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" 1779 + dependencies = [ 1780 + "malloc_buf", 1781 + "objc_exception", 1782 + ] 1783 + 1784 + [[package]] 1785 + name = "objc-foundation" 1786 + version = "0.1.1" 1787 + source = "registry+https://github.com/rust-lang/crates.io-index" 1788 + checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" 1789 + dependencies = [ 1790 + "block", 1791 + "objc", 1792 + "objc_id", 1793 + ] 1794 + 1795 + [[package]] 1796 + name = "objc_exception" 1797 + version = "0.1.2" 1798 + source = "registry+https://github.com/rust-lang/crates.io-index" 1799 + checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4" 1800 + dependencies = [ 1801 + "cc", 1802 + ] 1803 + 1804 + [[package]] 1805 + name = "objc_id" 1806 + version = "0.1.1" 1807 + source = "registry+https://github.com/rust-lang/crates.io-index" 1808 + checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" 1809 + dependencies = [ 1810 + "objc", 1811 + ] 1812 + 1813 + [[package]] 1814 + name = "once_cell" 1815 + version = "1.17.0" 1816 + source = "registry+https://github.com/rust-lang/crates.io-index" 1817 + checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" 1818 + 1819 + [[package]] 1820 + name = "open" 1821 + version = "3.2.0" 1822 + source = "registry+https://github.com/rust-lang/crates.io-index" 1823 + checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8" 1824 + dependencies = [ 1825 + "pathdiff", 1826 + "windows-sys 0.42.0", 1827 + ] 1828 + 1829 + [[package]] 1830 + name = "openssl" 1831 + version = "0.10.45" 1832 + source = "registry+https://github.com/rust-lang/crates.io-index" 1833 + checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1" 1834 + dependencies = [ 1835 + "bitflags", 1836 + "cfg-if", 1837 + "foreign-types", 1838 + "libc", 1839 + "once_cell", 1840 + "openssl-macros", 1841 + "openssl-sys", 1842 + ] 1843 + 1844 + [[package]] 1845 + name = "openssl-macros" 1846 + version = "0.1.0" 1847 + source = "registry+https://github.com/rust-lang/crates.io-index" 1848 + checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" 1849 + dependencies = [ 1850 + "proc-macro2", 1851 + "quote", 1852 + "syn", 1853 + ] 1854 + 1855 + [[package]] 1856 + name = "openssl-probe" 1857 + version = "0.1.5" 1858 + source = "registry+https://github.com/rust-lang/crates.io-index" 1859 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1860 + 1861 + [[package]] 1862 + name = "openssl-sys" 1863 + version = "0.9.80" 1864 + source = "registry+https://github.com/rust-lang/crates.io-index" 1865 + checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7" 1866 + dependencies = [ 1867 + "autocfg", 1868 + "cc", 1869 + "libc", 1870 + "pkg-config", 1871 + "vcpkg", 1872 + ] 1873 + 1874 + [[package]] 1875 + name = "os_info" 1876 + version = "3.5.1" 1877 + source = "registry+https://github.com/rust-lang/crates.io-index" 1878 + checksum = "c4750134fb6a5d49afc80777394ad5d95b04bc12068c6abb92fae8f43817270f" 1879 + dependencies = [ 1880 + "log", 1881 + "serde", 1882 + "winapi", 1883 + ] 1884 + 1885 + [[package]] 1886 + name = "os_pipe" 1887 + version = "1.1.2" 1888 + source = "registry+https://github.com/rust-lang/crates.io-index" 1889 + checksum = "c6a252f1f8c11e84b3ab59d7a488e48e4478a93937e027076638c49536204639" 1890 + dependencies = [ 1891 + "libc", 1892 + "windows-sys 0.42.0", 1893 + ] 1894 + 1895 + [[package]] 1896 + name = "os_str_bytes" 1897 + version = "6.4.1" 1898 + source = "registry+https://github.com/rust-lang/crates.io-index" 1899 + checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" 1900 + 1901 + [[package]] 1902 + name = "overload" 1903 + version = "0.1.1" 1904 + source = "registry+https://github.com/rust-lang/crates.io-index" 1905 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1906 + 1907 + [[package]] 1908 + name = "pango" 1909 + version = "0.15.10" 1910 + source = "registry+https://github.com/rust-lang/crates.io-index" 1911 + checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f" 1912 + dependencies = [ 1913 + "bitflags", 1914 + "glib", 1915 + "libc", 1916 + "once_cell", 1917 + "pango-sys", 1918 + ] 1919 + 1920 + [[package]] 1921 + name = "pango-sys" 1922 + version = "0.15.10" 1923 + source = "registry+https://github.com/rust-lang/crates.io-index" 1924 + checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa" 1925 + dependencies = [ 1926 + "glib-sys", 1927 + "gobject-sys", 1928 + "libc", 1929 + "system-deps 6.0.3", 1930 + ] 1931 + 1932 + [[package]] 1933 + name = "parallel-disk-usage" 1934 + version = "0.8.3" 1935 + source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "e42b33f85d6d5a345c243fff616265c2b8263a44641e88e4afd80f32dbd7279b" 1937 + dependencies = [ 1938 + "assert-cmp", 1939 + "clap", 1940 + "clap-utilities", 1941 + "clap_complete", 1942 + "derive_more", 1943 + "fmt-iter", 1944 + "itertools", 1945 + "pipe-trait", 1946 + "rayon", 1947 + "rounded-div", 1948 + "serde", 1949 + "serde_json", 1950 + "smart-default", 1951 + "terminal_size", 1952 + "text-block-macros", 1953 + "thiserror", 1954 + "zero-copy-pads", 1955 + ] 1956 + 1957 + [[package]] 1958 + name = "parking_lot" 1959 + version = "0.12.1" 1960 + source = "registry+https://github.com/rust-lang/crates.io-index" 1961 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1962 + dependencies = [ 1963 + "lock_api", 1964 + "parking_lot_core", 1965 + ] 1966 + 1967 + [[package]] 1968 + name = "parking_lot_core" 1969 + version = "0.9.6" 1970 + source = "registry+https://github.com/rust-lang/crates.io-index" 1971 + checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf" 1972 + dependencies = [ 1973 + "cfg-if", 1974 + "libc", 1975 + "redox_syscall", 1976 + "smallvec", 1977 + "windows-sys 0.42.0", 1978 + ] 1979 + 1980 + [[package]] 1981 + name = "paste" 1982 + version = "1.0.11" 1983 + source = "registry+https://github.com/rust-lang/crates.io-index" 1984 + checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" 1985 + 1986 + [[package]] 1987 + name = "pathdiff" 1988 + version = "0.2.1" 1989 + source = "registry+https://github.com/rust-lang/crates.io-index" 1990 + checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" 1991 + 1992 + [[package]] 1993 + name = "percent-encoding" 1994 + version = "2.2.0" 1995 + source = "registry+https://github.com/rust-lang/crates.io-index" 1996 + checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 1997 + 1998 + [[package]] 1999 + name = "pest" 2000 + version = "2.5.4" 2001 + source = "registry+https://github.com/rust-lang/crates.io-index" 2002 + checksum = "4ab62d2fa33726dbe6321cc97ef96d8cde531e3eeaf858a058de53a8a6d40d8f" 2003 + dependencies = [ 2004 + "thiserror", 2005 + "ucd-trie", 2006 + ] 2007 + 2008 + [[package]] 2009 + name = "phf" 2010 + version = "0.8.0" 2011 + source = "registry+https://github.com/rust-lang/crates.io-index" 2012 + checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 2013 + dependencies = [ 2014 + "phf_macros 0.8.0", 2015 + "phf_shared 0.8.0", 2016 + "proc-macro-hack", 2017 + ] 2018 + 2019 + [[package]] 2020 + name = "phf" 2021 + version = "0.10.1" 2022 + source = "registry+https://github.com/rust-lang/crates.io-index" 2023 + checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" 2024 + dependencies = [ 2025 + "phf_macros 0.10.0", 2026 + "phf_shared 0.10.0", 2027 + "proc-macro-hack", 2028 + ] 2029 + 2030 + [[package]] 2031 + name = "phf_codegen" 2032 + version = "0.8.0" 2033 + source = "registry+https://github.com/rust-lang/crates.io-index" 2034 + checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 2035 + dependencies = [ 2036 + "phf_generator 0.8.0", 2037 + "phf_shared 0.8.0", 2038 + ] 2039 + 2040 + [[package]] 2041 + name = "phf_generator" 2042 + version = "0.8.0" 2043 + source = "registry+https://github.com/rust-lang/crates.io-index" 2044 + checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 2045 + dependencies = [ 2046 + "phf_shared 0.8.0", 2047 + "rand 0.7.3", 2048 + ] 2049 + 2050 + [[package]] 2051 + name = "phf_generator" 2052 + version = "0.10.0" 2053 + source = "registry+https://github.com/rust-lang/crates.io-index" 2054 + checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" 2055 + dependencies = [ 2056 + "phf_shared 0.10.0", 2057 + "rand 0.8.5", 2058 + ] 2059 + 2060 + [[package]] 2061 + name = "phf_macros" 2062 + version = "0.8.0" 2063 + source = "registry+https://github.com/rust-lang/crates.io-index" 2064 + checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" 2065 + dependencies = [ 2066 + "phf_generator 0.8.0", 2067 + "phf_shared 0.8.0", 2068 + "proc-macro-hack", 2069 + "proc-macro2", 2070 + "quote", 2071 + "syn", 2072 + ] 2073 + 2074 + [[package]] 2075 + name = "phf_macros" 2076 + version = "0.10.0" 2077 + source = "registry+https://github.com/rust-lang/crates.io-index" 2078 + checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" 2079 + dependencies = [ 2080 + "phf_generator 0.10.0", 2081 + "phf_shared 0.10.0", 2082 + "proc-macro-hack", 2083 + "proc-macro2", 2084 + "quote", 2085 + "syn", 2086 + ] 2087 + 2088 + [[package]] 2089 + name = "phf_shared" 2090 + version = "0.8.0" 2091 + source = "registry+https://github.com/rust-lang/crates.io-index" 2092 + checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 2093 + dependencies = [ 2094 + "siphasher", 2095 + ] 2096 + 2097 + [[package]] 2098 + name = "phf_shared" 2099 + version = "0.10.0" 2100 + source = "registry+https://github.com/rust-lang/crates.io-index" 2101 + checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" 2102 + dependencies = [ 2103 + "siphasher", 2104 + ] 2105 + 2106 + [[package]] 2107 + name = "pin-project-lite" 2108 + version = "0.2.9" 2109 + source = "registry+https://github.com/rust-lang/crates.io-index" 2110 + checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 2111 + 2112 + [[package]] 2113 + name = "pin-utils" 2114 + version = "0.1.0" 2115 + source = "registry+https://github.com/rust-lang/crates.io-index" 2116 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2117 + 2118 + [[package]] 2119 + name = "pipe-trait" 2120 + version = "0.4.0" 2121 + source = "registry+https://github.com/rust-lang/crates.io-index" 2122 + checksum = "c1be1ec9e59f0360aefe84efa6f699198b685ab0d5718081e9f72aa2344289e2" 2123 + 2124 + [[package]] 2125 + name = "pkg-config" 2126 + version = "0.3.26" 2127 + source = "registry+https://github.com/rust-lang/crates.io-index" 2128 + checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 2129 + 2130 + [[package]] 2131 + name = "plist" 2132 + version = "1.4.0" 2133 + source = "registry+https://github.com/rust-lang/crates.io-index" 2134 + checksum = "5329b8f106a176ab0dce4aae5da86bfcb139bb74fb00882859e03745011f3635" 2135 + dependencies = [ 2136 + "base64", 2137 + "indexmap", 2138 + "line-wrap", 2139 + "quick-xml 0.26.0", 2140 + "serde", 2141 + "time", 2142 + ] 2143 + 2144 + [[package]] 2145 + name = "png" 2146 + version = "0.17.7" 2147 + source = "registry+https://github.com/rust-lang/crates.io-index" 2148 + checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638" 2149 + dependencies = [ 2150 + "bitflags", 2151 + "crc32fast", 2152 + "flate2", 2153 + "miniz_oxide", 2154 + ] 2155 + 2156 + [[package]] 2157 + name = "ppv-lite86" 2158 + version = "0.2.17" 2159 + source = "registry+https://github.com/rust-lang/crates.io-index" 2160 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2161 + 2162 + [[package]] 2163 + name = "precomputed-hash" 2164 + version = "0.1.1" 2165 + source = "registry+https://github.com/rust-lang/crates.io-index" 2166 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2167 + 2168 + [[package]] 2169 + name = "proc-macro-crate" 2170 + version = "1.3.0" 2171 + source = "registry+https://github.com/rust-lang/crates.io-index" 2172 + checksum = "66618389e4ec1c7afe67d51a9bf34ff9236480f8d51e7489b7d5ab0303c13f34" 2173 + dependencies = [ 2174 + "once_cell", 2175 + "toml_edit", 2176 + ] 2177 + 2178 + [[package]] 2179 + name = "proc-macro-error" 2180 + version = "1.0.4" 2181 + source = "registry+https://github.com/rust-lang/crates.io-index" 2182 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2183 + dependencies = [ 2184 + "proc-macro-error-attr", 2185 + "proc-macro2", 2186 + "quote", 2187 + "syn", 2188 + "version_check", 2189 + ] 2190 + 2191 + [[package]] 2192 + name = "proc-macro-error-attr" 2193 + version = "1.0.4" 2194 + source = "registry+https://github.com/rust-lang/crates.io-index" 2195 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2196 + dependencies = [ 2197 + "proc-macro2", 2198 + "quote", 2199 + "version_check", 2200 + ] 2201 + 2202 + [[package]] 2203 + name = "proc-macro-hack" 2204 + version = "0.5.20+deprecated" 2205 + source = "registry+https://github.com/rust-lang/crates.io-index" 2206 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2207 + 2208 + [[package]] 2209 + name = "proc-macro2" 2210 + version = "1.0.50" 2211 + source = "registry+https://github.com/rust-lang/crates.io-index" 2212 + checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" 2213 + dependencies = [ 2214 + "unicode-ident", 2215 + ] 2216 + 2217 + [[package]] 2218 + name = "quick-xml" 2219 + version = "0.23.1" 2220 + source = "registry+https://github.com/rust-lang/crates.io-index" 2221 + checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea" 2222 + dependencies = [ 2223 + "memchr", 2224 + ] 2225 + 2226 + [[package]] 2227 + name = "quick-xml" 2228 + version = "0.26.0" 2229 + source = "registry+https://github.com/rust-lang/crates.io-index" 2230 + checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" 2231 + dependencies = [ 2232 + "memchr", 2233 + ] 2234 + 2235 + [[package]] 2236 + name = "quote" 2237 + version = "1.0.23" 2238 + source = "registry+https://github.com/rust-lang/crates.io-index" 2239 + checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 2240 + dependencies = [ 2241 + "proc-macro2", 2242 + ] 2243 + 2244 + [[package]] 2245 + name = "rand" 2246 + version = "0.7.3" 2247 + source = "registry+https://github.com/rust-lang/crates.io-index" 2248 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2249 + dependencies = [ 2250 + "getrandom 0.1.16", 2251 + "libc", 2252 + "rand_chacha 0.2.2", 2253 + "rand_core 0.5.1", 2254 + "rand_hc", 2255 + "rand_pcg", 2256 + ] 2257 + 2258 + [[package]] 2259 + name = "rand" 2260 + version = "0.8.5" 2261 + source = "registry+https://github.com/rust-lang/crates.io-index" 2262 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2263 + dependencies = [ 2264 + "libc", 2265 + "rand_chacha 0.3.1", 2266 + "rand_core 0.6.4", 2267 + ] 2268 + 2269 + [[package]] 2270 + name = "rand_chacha" 2271 + version = "0.2.2" 2272 + source = "registry+https://github.com/rust-lang/crates.io-index" 2273 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2274 + dependencies = [ 2275 + "ppv-lite86", 2276 + "rand_core 0.5.1", 2277 + ] 2278 + 2279 + [[package]] 2280 + name = "rand_chacha" 2281 + version = "0.3.1" 2282 + source = "registry+https://github.com/rust-lang/crates.io-index" 2283 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2284 + dependencies = [ 2285 + "ppv-lite86", 2286 + "rand_core 0.6.4", 2287 + ] 2288 + 2289 + [[package]] 2290 + name = "rand_core" 2291 + version = "0.5.1" 2292 + source = "registry+https://github.com/rust-lang/crates.io-index" 2293 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2294 + dependencies = [ 2295 + "getrandom 0.1.16", 2296 + ] 2297 + 2298 + [[package]] 2299 + name = "rand_core" 2300 + version = "0.6.4" 2301 + source = "registry+https://github.com/rust-lang/crates.io-index" 2302 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2303 + dependencies = [ 2304 + "getrandom 0.2.8", 2305 + ] 2306 + 2307 + [[package]] 2308 + name = "rand_hc" 2309 + version = "0.2.0" 2310 + source = "registry+https://github.com/rust-lang/crates.io-index" 2311 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2312 + dependencies = [ 2313 + "rand_core 0.5.1", 2314 + ] 2315 + 2316 + [[package]] 2317 + name = "rand_pcg" 2318 + version = "0.2.1" 2319 + source = "registry+https://github.com/rust-lang/crates.io-index" 2320 + checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 2321 + dependencies = [ 2322 + "rand_core 0.5.1", 2323 + ] 2324 + 2325 + [[package]] 2326 + name = "raw-window-handle" 2327 + version = "0.5.0" 2328 + source = "registry+https://github.com/rust-lang/crates.io-index" 2329 + checksum = "ed7e3d950b66e19e0c372f3fa3fbbcf85b1746b571f74e0c2af6042a5c93420a" 2330 + dependencies = [ 2331 + "cty", 2332 + ] 2333 + 2334 + [[package]] 2335 + name = "rayon" 2336 + version = "1.6.1" 2337 + source = "registry+https://github.com/rust-lang/crates.io-index" 2338 + checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" 2339 + dependencies = [ 2340 + "either", 2341 + "rayon-core", 2342 + ] 2343 + 2344 + [[package]] 2345 + name = "rayon-core" 2346 + version = "1.10.2" 2347 + source = "registry+https://github.com/rust-lang/crates.io-index" 2348 + checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b" 2349 + dependencies = [ 2350 + "crossbeam-channel", 2351 + "crossbeam-deque", 2352 + "crossbeam-utils", 2353 + "num_cpus", 2354 + ] 2355 + 2356 + [[package]] 2357 + name = "redox_syscall" 2358 + version = "0.2.16" 2359 + source = "registry+https://github.com/rust-lang/crates.io-index" 2360 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2361 + dependencies = [ 2362 + "bitflags", 2363 + ] 2364 + 2365 + [[package]] 2366 + name = "redox_users" 2367 + version = "0.4.3" 2368 + source = "registry+https://github.com/rust-lang/crates.io-index" 2369 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2370 + dependencies = [ 2371 + "getrandom 0.2.8", 2372 + "redox_syscall", 2373 + "thiserror", 2374 + ] 2375 + 2376 + [[package]] 2377 + name = "regex" 2378 + version = "1.7.1" 2379 + source = "registry+https://github.com/rust-lang/crates.io-index" 2380 + checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" 2381 + dependencies = [ 2382 + "aho-corasick", 2383 + "memchr", 2384 + "regex-syntax", 2385 + ] 2386 + 2387 + [[package]] 2388 + name = "regex-automata" 2389 + version = "0.1.10" 2390 + source = "registry+https://github.com/rust-lang/crates.io-index" 2391 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2392 + dependencies = [ 2393 + "regex-syntax", 2394 + ] 2395 + 2396 + [[package]] 2397 + name = "regex-syntax" 2398 + version = "0.6.28" 2399 + source = "registry+https://github.com/rust-lang/crates.io-index" 2400 + checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" 2401 + 2402 + [[package]] 2403 + name = "remove_dir_all" 2404 + version = "0.5.3" 2405 + source = "registry+https://github.com/rust-lang/crates.io-index" 2406 + checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 2407 + dependencies = [ 2408 + "winapi", 2409 + ] 2410 + 2411 + [[package]] 2412 + name = "rfd" 2413 + version = "0.10.0" 2414 + source = "registry+https://github.com/rust-lang/crates.io-index" 2415 + checksum = "0149778bd99b6959285b0933288206090c50e2327f47a9c463bfdbf45c8823ea" 2416 + dependencies = [ 2417 + "block", 2418 + "dispatch", 2419 + "glib-sys", 2420 + "gobject-sys", 2421 + "gtk-sys", 2422 + "js-sys", 2423 + "lazy_static", 2424 + "log", 2425 + "objc", 2426 + "objc-foundation", 2427 + "objc_id", 2428 + "raw-window-handle", 2429 + "wasm-bindgen", 2430 + "wasm-bindgen-futures", 2431 + "web-sys", 2432 + "windows 0.37.0", 2433 + ] 2434 + 2435 + [[package]] 2436 + name = "rounded-div" 2437 + version = "0.1.2" 2438 + source = "registry+https://github.com/rust-lang/crates.io-index" 2439 + checksum = "464c8fb0a126d6a0326baf6abf1aa62c2da0d5780aa781a81451d64f543f5e2f" 2440 + 2441 + [[package]] 2442 + name = "rustc_version" 2443 + version = "0.3.3" 2444 + source = "registry+https://github.com/rust-lang/crates.io-index" 2445 + checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee" 2446 + dependencies = [ 2447 + "semver 0.11.0", 2448 + ] 2449 + 2450 + [[package]] 2451 + name = "rustc_version" 2452 + version = "0.4.0" 2453 + source = "registry+https://github.com/rust-lang/crates.io-index" 2454 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2455 + dependencies = [ 2456 + "semver 1.0.16", 2457 + ] 2458 + 2459 + [[package]] 2460 + name = "rustix" 2461 + version = "0.36.7" 2462 + source = "registry+https://github.com/rust-lang/crates.io-index" 2463 + checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03" 2464 + dependencies = [ 2465 + "bitflags", 2466 + "errno", 2467 + "io-lifetimes", 2468 + "libc", 2469 + "linux-raw-sys", 2470 + "windows-sys 0.42.0", 2471 + ] 2472 + 2473 + [[package]] 2474 + name = "rustversion" 2475 + version = "1.0.11" 2476 + source = "registry+https://github.com/rust-lang/crates.io-index" 2477 + checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" 2478 + 2479 + [[package]] 2480 + name = "ryu" 2481 + version = "1.0.12" 2482 + source = "registry+https://github.com/rust-lang/crates.io-index" 2483 + checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde" 2484 + 2485 + [[package]] 2486 + name = "safemem" 2487 + version = "0.3.3" 2488 + source = "registry+https://github.com/rust-lang/crates.io-index" 2489 + checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" 2490 + 2491 + [[package]] 2492 + name = "same-file" 2493 + version = "1.0.6" 2494 + source = "registry+https://github.com/rust-lang/crates.io-index" 2495 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 2496 + dependencies = [ 2497 + "winapi-util", 2498 + ] 2499 + 2500 + [[package]] 2501 + name = "schannel" 2502 + version = "0.1.21" 2503 + source = "registry+https://github.com/rust-lang/crates.io-index" 2504 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 2505 + dependencies = [ 2506 + "windows-sys 0.42.0", 2507 + ] 2508 + 2509 + [[package]] 2510 + name = "scoped-tls" 2511 + version = "1.0.1" 2512 + source = "registry+https://github.com/rust-lang/crates.io-index" 2513 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 2514 + 2515 + [[package]] 2516 + name = "scopeguard" 2517 + version = "1.1.0" 2518 + source = "registry+https://github.com/rust-lang/crates.io-index" 2519 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 2520 + 2521 + [[package]] 2522 + name = "security-framework" 2523 + version = "2.8.1" 2524 + source = "registry+https://github.com/rust-lang/crates.io-index" 2525 + checksum = "7c4437699b6d34972de58652c68b98cb5b53a4199ab126db8e20ec8ded29a721" 2526 + dependencies = [ 2527 + "bitflags", 2528 + "core-foundation", 2529 + "core-foundation-sys", 2530 + "libc", 2531 + "security-framework-sys", 2532 + ] 2533 + 2534 + [[package]] 2535 + name = "security-framework-sys" 2536 + version = "2.8.0" 2537 + source = "registry+https://github.com/rust-lang/crates.io-index" 2538 + checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4" 2539 + dependencies = [ 2540 + "core-foundation-sys", 2541 + "libc", 2542 + ] 2543 + 2544 + [[package]] 2545 + name = "selectors" 2546 + version = "0.22.0" 2547 + source = "registry+https://github.com/rust-lang/crates.io-index" 2548 + checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 2549 + dependencies = [ 2550 + "bitflags", 2551 + "cssparser", 2552 + "derive_more", 2553 + "fxhash", 2554 + "log", 2555 + "matches", 2556 + "phf 0.8.0", 2557 + "phf_codegen", 2558 + "precomputed-hash", 2559 + "servo_arc", 2560 + "smallvec", 2561 + "thin-slice", 2562 + ] 2563 + 2564 + [[package]] 2565 + name = "semver" 2566 + version = "0.11.0" 2567 + source = "registry+https://github.com/rust-lang/crates.io-index" 2568 + checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6" 2569 + dependencies = [ 2570 + "semver-parser", 2571 + ] 2572 + 2573 + [[package]] 2574 + name = "semver" 2575 + version = "1.0.16" 2576 + source = "registry+https://github.com/rust-lang/crates.io-index" 2577 + checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a" 2578 + dependencies = [ 2579 + "serde", 2580 + ] 2581 + 2582 + [[package]] 2583 + name = "semver-parser" 2584 + version = "0.10.2" 2585 + source = "registry+https://github.com/rust-lang/crates.io-index" 2586 + checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7" 2587 + dependencies = [ 2588 + "pest", 2589 + ] 2590 + 2591 + [[package]] 2592 + name = "serde" 2593 + version = "1.0.152" 2594 + source = "registry+https://github.com/rust-lang/crates.io-index" 2595 + checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" 2596 + dependencies = [ 2597 + "serde_derive", 2598 + ] 2599 + 2600 + [[package]] 2601 + name = "serde_derive" 2602 + version = "1.0.152" 2603 + source = "registry+https://github.com/rust-lang/crates.io-index" 2604 + checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" 2605 + dependencies = [ 2606 + "proc-macro2", 2607 + "quote", 2608 + "syn", 2609 + ] 2610 + 2611 + [[package]] 2612 + name = "serde_json" 2613 + version = "1.0.91" 2614 + source = "registry+https://github.com/rust-lang/crates.io-index" 2615 + checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" 2616 + dependencies = [ 2617 + "itoa 1.0.5", 2618 + "ryu", 2619 + "serde", 2620 + ] 2621 + 2622 + [[package]] 2623 + name = "serde_repr" 2624 + version = "0.1.10" 2625 + source = "registry+https://github.com/rust-lang/crates.io-index" 2626 + checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e" 2627 + dependencies = [ 2628 + "proc-macro2", 2629 + "quote", 2630 + "syn", 2631 + ] 2632 + 2633 + [[package]] 2634 + name = "serde_urlencoded" 2635 + version = "0.7.1" 2636 + source = "registry+https://github.com/rust-lang/crates.io-index" 2637 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 2638 + dependencies = [ 2639 + "form_urlencoded", 2640 + "itoa 1.0.5", 2641 + "ryu", 2642 + "serde", 2643 + ] 2644 + 2645 + [[package]] 2646 + name = "serde_with" 2647 + version = "1.14.0" 2648 + source = "registry+https://github.com/rust-lang/crates.io-index" 2649 + checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff" 2650 + dependencies = [ 2651 + "serde", 2652 + "serde_with_macros", 2653 + ] 2654 + 2655 + [[package]] 2656 + name = "serde_with_macros" 2657 + version = "1.5.2" 2658 + source = "registry+https://github.com/rust-lang/crates.io-index" 2659 + checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082" 2660 + dependencies = [ 2661 + "darling 0.13.4", 2662 + "proc-macro2", 2663 + "quote", 2664 + "syn", 2665 + ] 2666 + 2667 + [[package]] 2668 + name = "serialize-to-javascript" 2669 + version = "0.1.1" 2670 + source = "registry+https://github.com/rust-lang/crates.io-index" 2671 + checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" 2672 + dependencies = [ 2673 + "serde", 2674 + "serde_json", 2675 + "serialize-to-javascript-impl", 2676 + ] 2677 + 2678 + [[package]] 2679 + name = "serialize-to-javascript-impl" 2680 + version = "0.1.1" 2681 + source = "registry+https://github.com/rust-lang/crates.io-index" 2682 + checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" 2683 + dependencies = [ 2684 + "proc-macro2", 2685 + "quote", 2686 + "syn", 2687 + ] 2688 + 2689 + [[package]] 2690 + name = "servo_arc" 2691 + version = "0.1.1" 2692 + source = "registry+https://github.com/rust-lang/crates.io-index" 2693 + checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" 2694 + dependencies = [ 2695 + "nodrop", 2696 + "stable_deref_trait", 2697 + ] 2698 + 2699 + [[package]] 2700 + name = "sha2" 2701 + version = "0.10.6" 2702 + source = "registry+https://github.com/rust-lang/crates.io-index" 2703 + checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 2704 + dependencies = [ 2705 + "cfg-if", 2706 + "cpufeatures", 2707 + "digest", 2708 + ] 2709 + 2710 + [[package]] 2711 + name = "sharded-slab" 2712 + version = "0.1.4" 2713 + source = "registry+https://github.com/rust-lang/crates.io-index" 2714 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 2715 + dependencies = [ 2716 + "lazy_static", 2717 + ] 2718 + 2719 + [[package]] 2720 + name = "shared_child" 2721 + version = "1.0.0" 2722 + source = "registry+https://github.com/rust-lang/crates.io-index" 2723 + checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" 2724 + dependencies = [ 2725 + "libc", 2726 + "winapi", 2727 + ] 2728 + 2729 + [[package]] 2730 + name = "siphasher" 2731 + version = "0.3.10" 2732 + source = "registry+https://github.com/rust-lang/crates.io-index" 2733 + checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" 2734 + 2735 + [[package]] 2736 + name = "slab" 2737 + version = "0.4.7" 2738 + source = "registry+https://github.com/rust-lang/crates.io-index" 2739 + checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" 2740 + dependencies = [ 2741 + "autocfg", 2742 + ] 2743 + 2744 + [[package]] 2745 + name = "smallvec" 2746 + version = "1.10.0" 2747 + source = "registry+https://github.com/rust-lang/crates.io-index" 2748 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 2749 + 2750 + [[package]] 2751 + name = "smart-default" 2752 + version = "0.6.0" 2753 + source = "registry+https://github.com/rust-lang/crates.io-index" 2754 + checksum = "133659a15339456eeeb07572eb02a91c91e9815e9cbc89566944d2c8d3efdbf6" 2755 + dependencies = [ 2756 + "proc-macro2", 2757 + "quote", 2758 + "syn", 2759 + ] 2760 + 2761 + [[package]] 2762 + name = "soup2" 2763 + version = "0.2.1" 2764 + source = "registry+https://github.com/rust-lang/crates.io-index" 2765 + checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0" 2766 + dependencies = [ 2767 + "bitflags", 2768 + "gio", 2769 + "glib", 2770 + "libc", 2771 + "once_cell", 2772 + "soup2-sys", 2773 + ] 2774 + 2775 + [[package]] 2776 + name = "soup2-sys" 2777 + version = "0.2.0" 2778 + source = "registry+https://github.com/rust-lang/crates.io-index" 2779 + checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf" 2780 + dependencies = [ 2781 + "bitflags", 2782 + "gio-sys", 2783 + "glib-sys", 2784 + "gobject-sys", 2785 + "libc", 2786 + "system-deps 5.0.0", 2787 + ] 2788 + 2789 + [[package]] 2790 + name = "squirreldisk-tauri" 2791 + version = "0.0.0" 2792 + dependencies = [ 2793 + "cocoa", 2794 + "objc", 2795 + "parallel-disk-usage", 2796 + "raw-window-handle", 2797 + "regex", 2798 + "serde", 2799 + "serde_json", 2800 + "sysinfo", 2801 + "tauri", 2802 + "tauri-build", 2803 + "walkdir", 2804 + "window-shadows", 2805 + "window-vibrancy", 2806 + "windows-sys 0.45.0", 2807 + ] 2808 + 2809 + [[package]] 2810 + name = "stable_deref_trait" 2811 + version = "1.2.0" 2812 + source = "registry+https://github.com/rust-lang/crates.io-index" 2813 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 2814 + 2815 + [[package]] 2816 + name = "state" 2817 + version = "0.5.3" 2818 + source = "registry+https://github.com/rust-lang/crates.io-index" 2819 + checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b" 2820 + dependencies = [ 2821 + "loom", 2822 + ] 2823 + 2824 + [[package]] 2825 + name = "string_cache" 2826 + version = "0.8.4" 2827 + source = "registry+https://github.com/rust-lang/crates.io-index" 2828 + checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" 2829 + dependencies = [ 2830 + "new_debug_unreachable", 2831 + "once_cell", 2832 + "parking_lot", 2833 + "phf_shared 0.10.0", 2834 + "precomputed-hash", 2835 + "serde", 2836 + ] 2837 + 2838 + [[package]] 2839 + name = "string_cache_codegen" 2840 + version = "0.5.2" 2841 + source = "registry+https://github.com/rust-lang/crates.io-index" 2842 + checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988" 2843 + dependencies = [ 2844 + "phf_generator 0.10.0", 2845 + "phf_shared 0.10.0", 2846 + "proc-macro2", 2847 + "quote", 2848 + ] 2849 + 2850 + [[package]] 2851 + name = "strsim" 2852 + version = "0.10.0" 2853 + source = "registry+https://github.com/rust-lang/crates.io-index" 2854 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 2855 + 2856 + [[package]] 2857 + name = "strum" 2858 + version = "0.22.0" 2859 + source = "registry+https://github.com/rust-lang/crates.io-index" 2860 + checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e" 2861 + dependencies = [ 2862 + "strum_macros", 2863 + ] 2864 + 2865 + [[package]] 2866 + name = "strum_macros" 2867 + version = "0.22.0" 2868 + source = "registry+https://github.com/rust-lang/crates.io-index" 2869 + checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb" 2870 + dependencies = [ 2871 + "heck 0.3.3", 2872 + "proc-macro2", 2873 + "quote", 2874 + "syn", 2875 + ] 2876 + 2877 + [[package]] 2878 + name = "syn" 2879 + version = "1.0.107" 2880 + source = "registry+https://github.com/rust-lang/crates.io-index" 2881 + checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 2882 + dependencies = [ 2883 + "proc-macro2", 2884 + "quote", 2885 + "unicode-ident", 2886 + ] 2887 + 2888 + [[package]] 2889 + name = "sysinfo" 2890 + version = "0.27.7" 2891 + source = "registry+https://github.com/rust-lang/crates.io-index" 2892 + checksum = "975fe381e0ecba475d4acff52466906d95b153a40324956552e027b2a9eaa89e" 2893 + dependencies = [ 2894 + "cfg-if", 2895 + "core-foundation-sys", 2896 + "libc", 2897 + "ntapi", 2898 + "once_cell", 2899 + "rayon", 2900 + "winapi", 2901 + ] 2902 + 2903 + [[package]] 2904 + name = "system-deps" 2905 + version = "5.0.0" 2906 + source = "registry+https://github.com/rust-lang/crates.io-index" 2907 + checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e" 2908 + dependencies = [ 2909 + "cfg-expr 0.9.1", 2910 + "heck 0.3.3", 2911 + "pkg-config", 2912 + "toml", 2913 + "version-compare 0.0.11", 2914 + ] 2915 + 2916 + [[package]] 2917 + name = "system-deps" 2918 + version = "6.0.3" 2919 + source = "registry+https://github.com/rust-lang/crates.io-index" 2920 + checksum = "2955b1fe31e1fa2fbd1976b71cc69a606d7d4da16f6de3333d0c92d51419aeff" 2921 + dependencies = [ 2922 + "cfg-expr 0.11.0", 2923 + "heck 0.4.0", 2924 + "pkg-config", 2925 + "toml", 2926 + "version-compare 0.1.1", 2927 + ] 2928 + 2929 + [[package]] 2930 + name = "tao" 2931 + version = "0.15.8" 2932 + source = "registry+https://github.com/rust-lang/crates.io-index" 2933 + checksum = "ac8e6399427c8494f9849b58694754d7cc741293348a6836b6c8d2c5aa82d8e6" 2934 + dependencies = [ 2935 + "bitflags", 2936 + "cairo-rs", 2937 + "cc", 2938 + "cocoa", 2939 + "core-foundation", 2940 + "core-graphics", 2941 + "crossbeam-channel", 2942 + "dispatch", 2943 + "gdk", 2944 + "gdk-pixbuf", 2945 + "gdk-sys", 2946 + "gdkx11-sys", 2947 + "gio", 2948 + "glib", 2949 + "glib-sys", 2950 + "gtk", 2951 + "image", 2952 + "instant", 2953 + "jni", 2954 + "lazy_static", 2955 + "libc", 2956 + "log", 2957 + "ndk", 2958 + "ndk-context", 2959 + "ndk-sys", 2960 + "objc", 2961 + "once_cell", 2962 + "parking_lot", 2963 + "paste", 2964 + "png", 2965 + "raw-window-handle", 2966 + "scopeguard", 2967 + "serde", 2968 + "unicode-segmentation", 2969 + "uuid 1.2.2", 2970 + "windows 0.39.0", 2971 + "windows-implement", 2972 + "x11-dl", 2973 + ] 2974 + 2975 + [[package]] 2976 + name = "tar" 2977 + version = "0.4.38" 2978 + source = "registry+https://github.com/rust-lang/crates.io-index" 2979 + checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6" 2980 + dependencies = [ 2981 + "filetime", 2982 + "libc", 2983 + "xattr", 2984 + ] 2985 + 2986 + [[package]] 2987 + name = "tauri" 2988 + version = "1.2.4" 2989 + source = "registry+https://github.com/rust-lang/crates.io-index" 2990 + checksum = "fe7e0f1d535e7cbbbab43c82be4fc992b84f9156c16c160955617e0260ebc449" 2991 + dependencies = [ 2992 + "anyhow", 2993 + "attohttpc", 2994 + "base64", 2995 + "cocoa", 2996 + "dirs-next", 2997 + "embed_plist", 2998 + "encoding_rs", 2999 + "flate2", 3000 + "futures-util", 3001 + "glib", 3002 + "glob", 3003 + "gtk", 3004 + "heck 0.4.0", 3005 + "http", 3006 + "ignore", 3007 + "minisign-verify", 3008 + "notify-rust", 3009 + "objc", 3010 + "once_cell", 3011 + "open", 3012 + "os_info", 3013 + "os_pipe", 3014 + "percent-encoding", 3015 + "rand 0.8.5", 3016 + "raw-window-handle", 3017 + "regex", 3018 + "rfd", 3019 + "semver 1.0.16", 3020 + "serde", 3021 + "serde_json", 3022 + "serde_repr", 3023 + "serialize-to-javascript", 3024 + "shared_child", 3025 + "state", 3026 + "tar", 3027 + "tauri-macros", 3028 + "tauri-runtime", 3029 + "tauri-runtime-wry", 3030 + "tauri-utils", 3031 + "tempfile", 3032 + "thiserror", 3033 + "time", 3034 + "tokio", 3035 + "url", 3036 + "uuid 1.2.2", 3037 + "webkit2gtk", 3038 + "webview2-com", 3039 + "windows 0.39.0", 3040 + "zip", 3041 + ] 3042 + 3043 + [[package]] 3044 + name = "tauri-build" 3045 + version = "1.2.1" 3046 + source = "registry+https://github.com/rust-lang/crates.io-index" 3047 + checksum = "8807c85d656b2b93927c19fe5a5f1f1f348f96c2de8b90763b3c2d561511f9b4" 3048 + dependencies = [ 3049 + "anyhow", 3050 + "cargo_toml", 3051 + "heck 0.4.0", 3052 + "json-patch", 3053 + "semver 1.0.16", 3054 + "serde_json", 3055 + "tauri-utils", 3056 + "winres", 3057 + ] 3058 + 3059 + [[package]] 3060 + name = "tauri-codegen" 3061 + version = "1.2.1" 3062 + source = "registry+https://github.com/rust-lang/crates.io-index" 3063 + checksum = "14388d484b6b1b5dc0f6a7d6cc6433b3b230bec85eaa576adcdf3f9fafa49251" 3064 + dependencies = [ 3065 + "base64", 3066 + "brotli", 3067 + "ico", 3068 + "json-patch", 3069 + "plist", 3070 + "png", 3071 + "proc-macro2", 3072 + "quote", 3073 + "regex", 3074 + "semver 1.0.16", 3075 + "serde", 3076 + "serde_json", 3077 + "sha2", 3078 + "tauri-utils", 3079 + "thiserror", 3080 + "time", 3081 + "uuid 1.2.2", 3082 + "walkdir", 3083 + ] 3084 + 3085 + [[package]] 3086 + name = "tauri-macros" 3087 + version = "1.2.1" 3088 + source = "registry+https://github.com/rust-lang/crates.io-index" 3089 + checksum = "069319e5ecbe653a799b94b0690d9f9bf5d00f7b1d3989aa331c524d4e354075" 3090 + dependencies = [ 3091 + "heck 0.4.0", 3092 + "proc-macro2", 3093 + "quote", 3094 + "syn", 3095 + "tauri-codegen", 3096 + "tauri-utils", 3097 + ] 3098 + 3099 + [[package]] 3100 + name = "tauri-runtime" 3101 + version = "0.12.1" 3102 + source = "registry+https://github.com/rust-lang/crates.io-index" 3103 + checksum = "c507d954d08ac8705d235bc70ec6975b9054fb95ff7823af72dbb04186596f3b" 3104 + dependencies = [ 3105 + "gtk", 3106 + "http", 3107 + "http-range", 3108 + "rand 0.8.5", 3109 + "raw-window-handle", 3110 + "serde", 3111 + "serde_json", 3112 + "tauri-utils", 3113 + "thiserror", 3114 + "uuid 1.2.2", 3115 + "webview2-com", 3116 + "windows 0.39.0", 3117 + ] 3118 + 3119 + [[package]] 3120 + name = "tauri-runtime-wry" 3121 + version = "0.12.2" 3122 + source = "registry+https://github.com/rust-lang/crates.io-index" 3123 + checksum = "36b1c5764a41a13176a4599b5b7bd0881bea7d94dfe45e1e755f789b98317e30" 3124 + dependencies = [ 3125 + "cocoa", 3126 + "gtk", 3127 + "percent-encoding", 3128 + "rand 0.8.5", 3129 + "raw-window-handle", 3130 + "tauri-runtime", 3131 + "tauri-utils", 3132 + "uuid 1.2.2", 3133 + "webkit2gtk", 3134 + "webview2-com", 3135 + "windows 0.39.0", 3136 + "wry", 3137 + ] 3138 + 3139 + [[package]] 3140 + name = "tauri-utils" 3141 + version = "1.2.1" 3142 + source = "registry+https://github.com/rust-lang/crates.io-index" 3143 + checksum = "5abbc109a6eb45127956ffcc26ef0e875d160150ac16cfa45d26a6b2871686f1" 3144 + dependencies = [ 3145 + "brotli", 3146 + "ctor", 3147 + "glob", 3148 + "heck 0.4.0", 3149 + "html5ever", 3150 + "infer", 3151 + "json-patch", 3152 + "kuchiki", 3153 + "memchr", 3154 + "phf 0.10.1", 3155 + "proc-macro2", 3156 + "quote", 3157 + "semver 1.0.16", 3158 + "serde", 3159 + "serde_json", 3160 + "serde_with", 3161 + "thiserror", 3162 + "url", 3163 + "walkdir", 3164 + "windows 0.39.0", 3165 + ] 3166 + 3167 + [[package]] 3168 + name = "tauri-winrt-notification" 3169 + version = "0.1.0" 3170 + source = "registry+https://github.com/rust-lang/crates.io-index" 3171 + checksum = "c58de036c4d2e20717024de2a3c4bf56c301f07b21bc8ef9b57189fce06f1f3b" 3172 + dependencies = [ 3173 + "quick-xml 0.23.1", 3174 + "strum", 3175 + "windows 0.39.0", 3176 + ] 3177 + 3178 + [[package]] 3179 + name = "tempfile" 3180 + version = "3.3.0" 3181 + source = "registry+https://github.com/rust-lang/crates.io-index" 3182 + checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 3183 + dependencies = [ 3184 + "cfg-if", 3185 + "fastrand", 3186 + "libc", 3187 + "redox_syscall", 3188 + "remove_dir_all", 3189 + "winapi", 3190 + ] 3191 + 3192 + [[package]] 3193 + name = "tendril" 3194 + version = "0.4.3" 3195 + source = "registry+https://github.com/rust-lang/crates.io-index" 3196 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 3197 + dependencies = [ 3198 + "futf", 3199 + "mac", 3200 + "utf-8", 3201 + ] 3202 + 3203 + [[package]] 3204 + name = "termcolor" 3205 + version = "1.2.0" 3206 + source = "registry+https://github.com/rust-lang/crates.io-index" 3207 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 3208 + dependencies = [ 3209 + "winapi-util", 3210 + ] 3211 + 3212 + [[package]] 3213 + name = "terminal_size" 3214 + version = "0.2.3" 3215 + source = "registry+https://github.com/rust-lang/crates.io-index" 3216 + checksum = "cb20089a8ba2b69debd491f8d2d023761cbf196e999218c591fa1e7e15a21907" 3217 + dependencies = [ 3218 + "rustix", 3219 + "windows-sys 0.42.0", 3220 + ] 3221 + 3222 + [[package]] 3223 + name = "text-block-macros" 3224 + version = "0.1.1" 3225 + source = "registry+https://github.com/rust-lang/crates.io-index" 3226 + checksum = "7f8b59b4da1c1717deaf1de80f0179a9d8b4ac91c986d5fd9f4a8ff177b84049" 3227 + 3228 + [[package]] 3229 + name = "thin-slice" 3230 + version = "0.1.1" 3231 + source = "registry+https://github.com/rust-lang/crates.io-index" 3232 + checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" 3233 + 3234 + [[package]] 3235 + name = "thiserror" 3236 + version = "1.0.38" 3237 + source = "registry+https://github.com/rust-lang/crates.io-index" 3238 + checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0" 3239 + dependencies = [ 3240 + "thiserror-impl", 3241 + ] 3242 + 3243 + [[package]] 3244 + name = "thiserror-impl" 3245 + version = "1.0.38" 3246 + source = "registry+https://github.com/rust-lang/crates.io-index" 3247 + checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f" 3248 + dependencies = [ 3249 + "proc-macro2", 3250 + "quote", 3251 + "syn", 3252 + ] 3253 + 3254 + [[package]] 3255 + name = "thread_local" 3256 + version = "1.1.4" 3257 + source = "registry+https://github.com/rust-lang/crates.io-index" 3258 + checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" 3259 + dependencies = [ 3260 + "once_cell", 3261 + ] 3262 + 3263 + [[package]] 3264 + name = "time" 3265 + version = "0.3.17" 3266 + source = "registry+https://github.com/rust-lang/crates.io-index" 3267 + checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" 3268 + dependencies = [ 3269 + "itoa 1.0.5", 3270 + "serde", 3271 + "time-core", 3272 + "time-macros", 3273 + ] 3274 + 3275 + [[package]] 3276 + name = "time-core" 3277 + version = "0.1.0" 3278 + source = "registry+https://github.com/rust-lang/crates.io-index" 3279 + checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" 3280 + 3281 + [[package]] 3282 + name = "time-macros" 3283 + version = "0.2.6" 3284 + source = "registry+https://github.com/rust-lang/crates.io-index" 3285 + checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" 3286 + dependencies = [ 3287 + "time-core", 3288 + ] 3289 + 3290 + [[package]] 3291 + name = "tinyvec" 3292 + version = "1.6.0" 3293 + source = "registry+https://github.com/rust-lang/crates.io-index" 3294 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 3295 + dependencies = [ 3296 + "tinyvec_macros", 3297 + ] 3298 + 3299 + [[package]] 3300 + name = "tinyvec_macros" 3301 + version = "0.1.0" 3302 + source = "registry+https://github.com/rust-lang/crates.io-index" 3303 + checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" 3304 + 3305 + [[package]] 3306 + name = "tokio" 3307 + version = "1.24.2" 3308 + source = "registry+https://github.com/rust-lang/crates.io-index" 3309 + checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" 3310 + dependencies = [ 3311 + "autocfg", 3312 + "bytes", 3313 + "memchr", 3314 + "num_cpus", 3315 + "pin-project-lite", 3316 + "windows-sys 0.42.0", 3317 + ] 3318 + 3319 + [[package]] 3320 + name = "toml" 3321 + version = "0.5.11" 3322 + source = "registry+https://github.com/rust-lang/crates.io-index" 3323 + checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 3324 + dependencies = [ 3325 + "serde", 3326 + ] 3327 + 3328 + [[package]] 3329 + name = "toml_datetime" 3330 + version = "0.5.1" 3331 + source = "registry+https://github.com/rust-lang/crates.io-index" 3332 + checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5" 3333 + 3334 + [[package]] 3335 + name = "toml_edit" 3336 + version = "0.18.1" 3337 + source = "registry+https://github.com/rust-lang/crates.io-index" 3338 + checksum = "56c59d8dd7d0dcbc6428bf7aa2f0e823e26e43b3c9aca15bbc9475d23e5fa12b" 3339 + dependencies = [ 3340 + "indexmap", 3341 + "nom8", 3342 + "toml_datetime", 3343 + ] 3344 + 3345 + [[package]] 3346 + name = "tracing" 3347 + version = "0.1.37" 3348 + source = "registry+https://github.com/rust-lang/crates.io-index" 3349 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 3350 + dependencies = [ 3351 + "cfg-if", 3352 + "pin-project-lite", 3353 + "tracing-attributes", 3354 + "tracing-core", 3355 + ] 3356 + 3357 + [[package]] 3358 + name = "tracing-attributes" 3359 + version = "0.1.23" 3360 + source = "registry+https://github.com/rust-lang/crates.io-index" 3361 + checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" 3362 + dependencies = [ 3363 + "proc-macro2", 3364 + "quote", 3365 + "syn", 3366 + ] 3367 + 3368 + [[package]] 3369 + name = "tracing-core" 3370 + version = "0.1.30" 3371 + source = "registry+https://github.com/rust-lang/crates.io-index" 3372 + checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" 3373 + dependencies = [ 3374 + "once_cell", 3375 + "valuable", 3376 + ] 3377 + 3378 + [[package]] 3379 + name = "tracing-log" 3380 + version = "0.1.3" 3381 + source = "registry+https://github.com/rust-lang/crates.io-index" 3382 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 3383 + dependencies = [ 3384 + "lazy_static", 3385 + "log", 3386 + "tracing-core", 3387 + ] 3388 + 3389 + [[package]] 3390 + name = "tracing-subscriber" 3391 + version = "0.3.16" 3392 + source = "registry+https://github.com/rust-lang/crates.io-index" 3393 + checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" 3394 + dependencies = [ 3395 + "matchers", 3396 + "nu-ansi-term", 3397 + "once_cell", 3398 + "regex", 3399 + "sharded-slab", 3400 + "smallvec", 3401 + "thread_local", 3402 + "tracing", 3403 + "tracing-core", 3404 + "tracing-log", 3405 + ] 3406 + 3407 + [[package]] 3408 + name = "treediff" 3409 + version = "3.0.2" 3410 + source = "registry+https://github.com/rust-lang/crates.io-index" 3411 + checksum = "761e8d5ad7ce14bb82b7e61ccc0ca961005a275a060b9644a2431aa11553c2ff" 3412 + dependencies = [ 3413 + "serde_json", 3414 + ] 3415 + 3416 + [[package]] 3417 + name = "typenum" 3418 + version = "1.16.0" 3419 + source = "registry+https://github.com/rust-lang/crates.io-index" 3420 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 3421 + 3422 + [[package]] 3423 + name = "ucd-trie" 3424 + version = "0.1.5" 3425 + source = "registry+https://github.com/rust-lang/crates.io-index" 3426 + checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" 3427 + 3428 + [[package]] 3429 + name = "unicode-bidi" 3430 + version = "0.3.10" 3431 + source = "registry+https://github.com/rust-lang/crates.io-index" 3432 + checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" 3433 + 3434 + [[package]] 3435 + name = "unicode-ident" 3436 + version = "1.0.6" 3437 + source = "registry+https://github.com/rust-lang/crates.io-index" 3438 + checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 3439 + 3440 + [[package]] 3441 + name = "unicode-normalization" 3442 + version = "0.1.22" 3443 + source = "registry+https://github.com/rust-lang/crates.io-index" 3444 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 3445 + dependencies = [ 3446 + "tinyvec", 3447 + ] 3448 + 3449 + [[package]] 3450 + name = "unicode-segmentation" 3451 + version = "1.10.0" 3452 + source = "registry+https://github.com/rust-lang/crates.io-index" 3453 + checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" 3454 + 3455 + [[package]] 3456 + name = "unicode-width" 3457 + version = "0.1.10" 3458 + source = "registry+https://github.com/rust-lang/crates.io-index" 3459 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 3460 + 3461 + [[package]] 3462 + name = "url" 3463 + version = "2.3.1" 3464 + source = "registry+https://github.com/rust-lang/crates.io-index" 3465 + checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 3466 + dependencies = [ 3467 + "form_urlencoded", 3468 + "idna", 3469 + "percent-encoding", 3470 + "serde", 3471 + ] 3472 + 3473 + [[package]] 3474 + name = "utf-8" 3475 + version = "0.7.6" 3476 + source = "registry+https://github.com/rust-lang/crates.io-index" 3477 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3478 + 3479 + [[package]] 3480 + name = "uuid" 3481 + version = "0.8.2" 3482 + source = "registry+https://github.com/rust-lang/crates.io-index" 3483 + checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 3484 + 3485 + [[package]] 3486 + name = "uuid" 3487 + version = "1.2.2" 3488 + source = "registry+https://github.com/rust-lang/crates.io-index" 3489 + checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" 3490 + dependencies = [ 3491 + "getrandom 0.2.8", 3492 + ] 3493 + 3494 + [[package]] 3495 + name = "valuable" 3496 + version = "0.1.0" 3497 + source = "registry+https://github.com/rust-lang/crates.io-index" 3498 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 3499 + 3500 + [[package]] 3501 + name = "vcpkg" 3502 + version = "0.2.15" 3503 + source = "registry+https://github.com/rust-lang/crates.io-index" 3504 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 3505 + 3506 + [[package]] 3507 + name = "version-compare" 3508 + version = "0.0.11" 3509 + source = "registry+https://github.com/rust-lang/crates.io-index" 3510 + checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b" 3511 + 3512 + [[package]] 3513 + name = "version-compare" 3514 + version = "0.1.1" 3515 + source = "registry+https://github.com/rust-lang/crates.io-index" 3516 + checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29" 3517 + 3518 + [[package]] 3519 + name = "version_check" 3520 + version = "0.9.4" 3521 + source = "registry+https://github.com/rust-lang/crates.io-index" 3522 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 3523 + 3524 + [[package]] 3525 + name = "walkdir" 3526 + version = "2.3.2" 3527 + source = "registry+https://github.com/rust-lang/crates.io-index" 3528 + checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" 3529 + dependencies = [ 3530 + "same-file", 3531 + "winapi", 3532 + "winapi-util", 3533 + ] 3534 + 3535 + [[package]] 3536 + name = "wasi" 3537 + version = "0.9.0+wasi-snapshot-preview1" 3538 + source = "registry+https://github.com/rust-lang/crates.io-index" 3539 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 3540 + 3541 + [[package]] 3542 + name = "wasi" 3543 + version = "0.11.0+wasi-snapshot-preview1" 3544 + source = "registry+https://github.com/rust-lang/crates.io-index" 3545 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 3546 + 3547 + [[package]] 3548 + name = "wasm-bindgen" 3549 + version = "0.2.83" 3550 + source = "registry+https://github.com/rust-lang/crates.io-index" 3551 + checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" 3552 + dependencies = [ 3553 + "cfg-if", 3554 + "wasm-bindgen-macro", 3555 + ] 3556 + 3557 + [[package]] 3558 + name = "wasm-bindgen-backend" 3559 + version = "0.2.83" 3560 + source = "registry+https://github.com/rust-lang/crates.io-index" 3561 + checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" 3562 + dependencies = [ 3563 + "bumpalo", 3564 + "log", 3565 + "once_cell", 3566 + "proc-macro2", 3567 + "quote", 3568 + "syn", 3569 + "wasm-bindgen-shared", 3570 + ] 3571 + 3572 + [[package]] 3573 + name = "wasm-bindgen-futures" 3574 + version = "0.4.33" 3575 + source = "registry+https://github.com/rust-lang/crates.io-index" 3576 + checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" 3577 + dependencies = [ 3578 + "cfg-if", 3579 + "js-sys", 3580 + "wasm-bindgen", 3581 + "web-sys", 3582 + ] 3583 + 3584 + [[package]] 3585 + name = "wasm-bindgen-macro" 3586 + version = "0.2.83" 3587 + source = "registry+https://github.com/rust-lang/crates.io-index" 3588 + checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" 3589 + dependencies = [ 3590 + "quote", 3591 + "wasm-bindgen-macro-support", 3592 + ] 3593 + 3594 + [[package]] 3595 + name = "wasm-bindgen-macro-support" 3596 + version = "0.2.83" 3597 + source = "registry+https://github.com/rust-lang/crates.io-index" 3598 + checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" 3599 + dependencies = [ 3600 + "proc-macro2", 3601 + "quote", 3602 + "syn", 3603 + "wasm-bindgen-backend", 3604 + "wasm-bindgen-shared", 3605 + ] 3606 + 3607 + [[package]] 3608 + name = "wasm-bindgen-shared" 3609 + version = "0.2.83" 3610 + source = "registry+https://github.com/rust-lang/crates.io-index" 3611 + checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" 3612 + 3613 + [[package]] 3614 + name = "web-sys" 3615 + version = "0.3.60" 3616 + source = "registry+https://github.com/rust-lang/crates.io-index" 3617 + checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" 3618 + dependencies = [ 3619 + "js-sys", 3620 + "wasm-bindgen", 3621 + ] 3622 + 3623 + [[package]] 3624 + name = "webkit2gtk" 3625 + version = "0.18.2" 3626 + source = "registry+https://github.com/rust-lang/crates.io-index" 3627 + checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370" 3628 + dependencies = [ 3629 + "bitflags", 3630 + "cairo-rs", 3631 + "gdk", 3632 + "gdk-sys", 3633 + "gio", 3634 + "gio-sys", 3635 + "glib", 3636 + "glib-sys", 3637 + "gobject-sys", 3638 + "gtk", 3639 + "gtk-sys", 3640 + "javascriptcore-rs", 3641 + "libc", 3642 + "once_cell", 3643 + "soup2", 3644 + "webkit2gtk-sys", 3645 + ] 3646 + 3647 + [[package]] 3648 + name = "webkit2gtk-sys" 3649 + version = "0.18.0" 3650 + source = "registry+https://github.com/rust-lang/crates.io-index" 3651 + checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3" 3652 + dependencies = [ 3653 + "atk-sys", 3654 + "bitflags", 3655 + "cairo-sys-rs", 3656 + "gdk-pixbuf-sys", 3657 + "gdk-sys", 3658 + "gio-sys", 3659 + "glib-sys", 3660 + "gobject-sys", 3661 + "gtk-sys", 3662 + "javascriptcore-rs-sys", 3663 + "libc", 3664 + "pango-sys", 3665 + "pkg-config", 3666 + "soup2-sys", 3667 + "system-deps 6.0.3", 3668 + ] 3669 + 3670 + [[package]] 3671 + name = "webview2-com" 3672 + version = "0.19.1" 3673 + source = "registry+https://github.com/rust-lang/crates.io-index" 3674 + checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178" 3675 + dependencies = [ 3676 + "webview2-com-macros", 3677 + "webview2-com-sys", 3678 + "windows 0.39.0", 3679 + "windows-implement", 3680 + ] 3681 + 3682 + [[package]] 3683 + name = "webview2-com-macros" 3684 + version = "0.6.0" 3685 + source = "registry+https://github.com/rust-lang/crates.io-index" 3686 + checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac" 3687 + dependencies = [ 3688 + "proc-macro2", 3689 + "quote", 3690 + "syn", 3691 + ] 3692 + 3693 + [[package]] 3694 + name = "webview2-com-sys" 3695 + version = "0.19.0" 3696 + source = "registry+https://github.com/rust-lang/crates.io-index" 3697 + checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7" 3698 + dependencies = [ 3699 + "regex", 3700 + "serde", 3701 + "serde_json", 3702 + "thiserror", 3703 + "windows 0.39.0", 3704 + "windows-bindgen", 3705 + "windows-metadata", 3706 + ] 3707 + 3708 + [[package]] 3709 + name = "winapi" 3710 + version = "0.3.9" 3711 + source = "registry+https://github.com/rust-lang/crates.io-index" 3712 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3713 + dependencies = [ 3714 + "winapi-i686-pc-windows-gnu", 3715 + "winapi-x86_64-pc-windows-gnu", 3716 + ] 3717 + 3718 + [[package]] 3719 + name = "winapi-i686-pc-windows-gnu" 3720 + version = "0.4.0" 3721 + source = "registry+https://github.com/rust-lang/crates.io-index" 3722 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3723 + 3724 + [[package]] 3725 + name = "winapi-util" 3726 + version = "0.1.5" 3727 + source = "registry+https://github.com/rust-lang/crates.io-index" 3728 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 3729 + dependencies = [ 3730 + "winapi", 3731 + ] 3732 + 3733 + [[package]] 3734 + name = "winapi-x86_64-pc-windows-gnu" 3735 + version = "0.4.0" 3736 + source = "registry+https://github.com/rust-lang/crates.io-index" 3737 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3738 + 3739 + [[package]] 3740 + name = "window-shadows" 3741 + version = "0.2.1" 3742 + source = "git+https://github.com/adileo/window-shadows#753bcdfe39d65f1267f623f70ed9a9e9be21e2e0" 3743 + dependencies = [ 3744 + "cocoa", 3745 + "objc", 3746 + "raw-window-handle", 3747 + "windows-sys 0.45.0", 3748 + ] 3749 + 3750 + [[package]] 3751 + name = "window-vibrancy" 3752 + version = "0.3.2" 3753 + source = "registry+https://github.com/rust-lang/crates.io-index" 3754 + checksum = "2f762d9cc392fb85e6b1b5eed1ef13d73fed5149a5cbb017a7137497d14ef612" 3755 + dependencies = [ 3756 + "cocoa", 3757 + "objc", 3758 + "raw-window-handle", 3759 + "windows-sys 0.42.0", 3760 + ] 3761 + 3762 + [[package]] 3763 + name = "windows" 3764 + version = "0.37.0" 3765 + source = "registry+https://github.com/rust-lang/crates.io-index" 3766 + checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647" 3767 + dependencies = [ 3768 + "windows_aarch64_msvc 0.37.0", 3769 + "windows_i686_gnu 0.37.0", 3770 + "windows_i686_msvc 0.37.0", 3771 + "windows_x86_64_gnu 0.37.0", 3772 + "windows_x86_64_msvc 0.37.0", 3773 + ] 3774 + 3775 + [[package]] 3776 + name = "windows" 3777 + version = "0.39.0" 3778 + source = "registry+https://github.com/rust-lang/crates.io-index" 3779 + checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 3780 + dependencies = [ 3781 + "windows-implement", 3782 + "windows_aarch64_msvc 0.39.0", 3783 + "windows_i686_gnu 0.39.0", 3784 + "windows_i686_msvc 0.39.0", 3785 + "windows_x86_64_gnu 0.39.0", 3786 + "windows_x86_64_msvc 0.39.0", 3787 + ] 3788 + 3789 + [[package]] 3790 + name = "windows-bindgen" 3791 + version = "0.39.0" 3792 + source = "registry+https://github.com/rust-lang/crates.io-index" 3793 + checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41" 3794 + dependencies = [ 3795 + "windows-metadata", 3796 + "windows-tokens", 3797 + ] 3798 + 3799 + [[package]] 3800 + name = "windows-implement" 3801 + version = "0.39.0" 3802 + source = "registry+https://github.com/rust-lang/crates.io-index" 3803 + checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7" 3804 + dependencies = [ 3805 + "syn", 3806 + "windows-tokens", 3807 + ] 3808 + 3809 + [[package]] 3810 + name = "windows-metadata" 3811 + version = "0.39.0" 3812 + source = "registry+https://github.com/rust-lang/crates.io-index" 3813 + checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278" 3814 + 3815 + [[package]] 3816 + name = "windows-sys" 3817 + version = "0.42.0" 3818 + source = "registry+https://github.com/rust-lang/crates.io-index" 3819 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 3820 + dependencies = [ 3821 + "windows_aarch64_gnullvm", 3822 + "windows_aarch64_msvc 0.42.1", 3823 + "windows_i686_gnu 0.42.1", 3824 + "windows_i686_msvc 0.42.1", 3825 + "windows_x86_64_gnu 0.42.1", 3826 + "windows_x86_64_gnullvm", 3827 + "windows_x86_64_msvc 0.42.1", 3828 + ] 3829 + 3830 + [[package]] 3831 + name = "windows-sys" 3832 + version = "0.45.0" 3833 + source = "registry+https://github.com/rust-lang/crates.io-index" 3834 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 3835 + dependencies = [ 3836 + "windows-targets", 3837 + ] 3838 + 3839 + [[package]] 3840 + name = "windows-targets" 3841 + version = "0.42.1" 3842 + source = "registry+https://github.com/rust-lang/crates.io-index" 3843 + checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7" 3844 + dependencies = [ 3845 + "windows_aarch64_gnullvm", 3846 + "windows_aarch64_msvc 0.42.1", 3847 + "windows_i686_gnu 0.42.1", 3848 + "windows_i686_msvc 0.42.1", 3849 + "windows_x86_64_gnu 0.42.1", 3850 + "windows_x86_64_gnullvm", 3851 + "windows_x86_64_msvc 0.42.1", 3852 + ] 3853 + 3854 + [[package]] 3855 + name = "windows-tokens" 3856 + version = "0.39.0" 3857 + source = "registry+https://github.com/rust-lang/crates.io-index" 3858 + checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597" 3859 + 3860 + [[package]] 3861 + name = "windows_aarch64_gnullvm" 3862 + version = "0.42.1" 3863 + source = "registry+https://github.com/rust-lang/crates.io-index" 3864 + checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608" 3865 + 3866 + [[package]] 3867 + name = "windows_aarch64_msvc" 3868 + version = "0.37.0" 3869 + source = "registry+https://github.com/rust-lang/crates.io-index" 3870 + checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a" 3871 + 3872 + [[package]] 3873 + name = "windows_aarch64_msvc" 3874 + version = "0.39.0" 3875 + source = "registry+https://github.com/rust-lang/crates.io-index" 3876 + checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 3877 + 3878 + [[package]] 3879 + name = "windows_aarch64_msvc" 3880 + version = "0.42.1" 3881 + source = "registry+https://github.com/rust-lang/crates.io-index" 3882 + checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7" 3883 + 3884 + [[package]] 3885 + name = "windows_i686_gnu" 3886 + version = "0.37.0" 3887 + source = "registry+https://github.com/rust-lang/crates.io-index" 3888 + checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1" 3889 + 3890 + [[package]] 3891 + name = "windows_i686_gnu" 3892 + version = "0.39.0" 3893 + source = "registry+https://github.com/rust-lang/crates.io-index" 3894 + checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 3895 + 3896 + [[package]] 3897 + name = "windows_i686_gnu" 3898 + version = "0.42.1" 3899 + source = "registry+https://github.com/rust-lang/crates.io-index" 3900 + checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640" 3901 + 3902 + [[package]] 3903 + name = "windows_i686_msvc" 3904 + version = "0.37.0" 3905 + source = "registry+https://github.com/rust-lang/crates.io-index" 3906 + checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c" 3907 + 3908 + [[package]] 3909 + name = "windows_i686_msvc" 3910 + version = "0.39.0" 3911 + source = "registry+https://github.com/rust-lang/crates.io-index" 3912 + checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 3913 + 3914 + [[package]] 3915 + name = "windows_i686_msvc" 3916 + version = "0.42.1" 3917 + source = "registry+https://github.com/rust-lang/crates.io-index" 3918 + checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605" 3919 + 3920 + [[package]] 3921 + name = "windows_x86_64_gnu" 3922 + version = "0.37.0" 3923 + source = "registry+https://github.com/rust-lang/crates.io-index" 3924 + checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d" 3925 + 3926 + [[package]] 3927 + name = "windows_x86_64_gnu" 3928 + version = "0.39.0" 3929 + source = "registry+https://github.com/rust-lang/crates.io-index" 3930 + checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 3931 + 3932 + [[package]] 3933 + name = "windows_x86_64_gnu" 3934 + version = "0.42.1" 3935 + source = "registry+https://github.com/rust-lang/crates.io-index" 3936 + checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45" 3937 + 3938 + [[package]] 3939 + name = "windows_x86_64_gnullvm" 3940 + version = "0.42.1" 3941 + source = "registry+https://github.com/rust-lang/crates.io-index" 3942 + checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463" 3943 + 3944 + [[package]] 3945 + name = "windows_x86_64_msvc" 3946 + version = "0.37.0" 3947 + source = "registry+https://github.com/rust-lang/crates.io-index" 3948 + checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d" 3949 + 3950 + [[package]] 3951 + name = "windows_x86_64_msvc" 3952 + version = "0.39.0" 3953 + source = "registry+https://github.com/rust-lang/crates.io-index" 3954 + checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" 3955 + 3956 + [[package]] 3957 + name = "windows_x86_64_msvc" 3958 + version = "0.42.1" 3959 + source = "registry+https://github.com/rust-lang/crates.io-index" 3960 + checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" 3961 + 3962 + [[package]] 3963 + name = "winres" 3964 + version = "0.1.12" 3965 + source = "registry+https://github.com/rust-lang/crates.io-index" 3966 + checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c" 3967 + dependencies = [ 3968 + "toml", 3969 + ] 3970 + 3971 + [[package]] 3972 + name = "wry" 3973 + version = "0.23.4" 3974 + source = "registry+https://github.com/rust-lang/crates.io-index" 3975 + checksum = "4c1ad8e2424f554cc5bdebe8aa374ef5b433feff817aebabca0389961fc7ef98" 3976 + dependencies = [ 3977 + "base64", 3978 + "block", 3979 + "cocoa", 3980 + "core-graphics", 3981 + "crossbeam-channel", 3982 + "dunce", 3983 + "gdk", 3984 + "gio", 3985 + "glib", 3986 + "gtk", 3987 + "html5ever", 3988 + "http", 3989 + "kuchiki", 3990 + "libc", 3991 + "log", 3992 + "objc", 3993 + "objc_id", 3994 + "once_cell", 3995 + "serde", 3996 + "serde_json", 3997 + "sha2", 3998 + "soup2", 3999 + "tao", 4000 + "thiserror", 4001 + "url", 4002 + "webkit2gtk", 4003 + "webkit2gtk-sys", 4004 + "webview2-com", 4005 + "windows 0.39.0", 4006 + "windows-implement", 4007 + ] 4008 + 4009 + [[package]] 4010 + name = "x11" 4011 + version = "2.21.0" 4012 + source = "registry+https://github.com/rust-lang/crates.io-index" 4013 + checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" 4014 + dependencies = [ 4015 + "libc", 4016 + "pkg-config", 4017 + ] 4018 + 4019 + [[package]] 4020 + name = "x11-dl" 4021 + version = "2.21.0" 4022 + source = "registry+https://github.com/rust-lang/crates.io-index" 4023 + checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" 4024 + dependencies = [ 4025 + "libc", 4026 + "once_cell", 4027 + "pkg-config", 4028 + ] 4029 + 4030 + [[package]] 4031 + name = "xattr" 4032 + version = "0.2.3" 4033 + source = "registry+https://github.com/rust-lang/crates.io-index" 4034 + checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" 4035 + dependencies = [ 4036 + "libc", 4037 + ] 4038 + 4039 + [[package]] 4040 + name = "zero-copy-pads" 4041 + version = "0.2.0" 4042 + source = "registry+https://github.com/rust-lang/crates.io-index" 4043 + checksum = "5649a5dce1370c707880332f781f6566883736a41861a5749890f4671d5746b6" 4044 + dependencies = [ 4045 + "derive_builder", 4046 + "derive_more", 4047 + "fmt-iter", 4048 + "unicode-width", 4049 + ] 4050 + 4051 + [[package]] 4052 + name = "zip" 4053 + version = "0.6.3" 4054 + source = "registry+https://github.com/rust-lang/crates.io-index" 4055 + checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080" 4056 + dependencies = [ 4057 + "byteorder", 4058 + "crc32fast", 4059 + "crossbeam-utils", 4060 + ]
+40
pkgs/by-name/sq/squirreldisk/package.json
···
··· 1 + { 2 + "name": "squirreldisk-tauri", 3 + "private": true, 4 + "version": "0.0.0", 5 + "type": "module", 6 + "scripts": { 7 + "dev": "vite", 8 + "build": "tsc && vite build", 9 + "preview": "vite preview", 10 + "tauri": "tauri" 11 + }, 12 + "dependencies": { 13 + "@tauri-apps/api": "^1.2.0", 14 + "d3": "^7.8.2", 15 + "mongoid-js": "^1.3.0", 16 + "pretty-bytes": "^6.0.0", 17 + "react": "^18.2.0", 18 + "react-beautiful-dnd": "^13.1.1", 19 + "react-dom": "^18.2.0", 20 + "react-router-dom": "^6.8.0", 21 + "shade-blend-color": "^1.0.0", 22 + "uuid": "^9.0.0", 23 + "vscode-icons-js": "^11.6.1" 24 + }, 25 + "devDependencies": { 26 + "@tauri-apps/cli": "^1.2.2", 27 + "@types/d3": "^7.4.0", 28 + "@types/node": "^18.7.10", 29 + "@types/react": "^18.0.15", 30 + "@types/react-beautiful-dnd": "^13.1.3", 31 + "@types/react-dom": "^18.0.6", 32 + "@types/uuid": "^9.0.0", 33 + "@vitejs/plugin-react": "^3.0.0", 34 + "autoprefixer": "^10.4.13", 35 + "postcss": "^8.4.21", 36 + "tailwindcss": "^3.2.4", 37 + "typescript": "^4.6.4", 38 + "vite": "^4.0.0" 39 + } 40 + }
+89
pkgs/by-name/sq/squirreldisk/package.nix
···
··· 1 + { 2 + dbus, 3 + openssl, 4 + freetype, 5 + libsoup, 6 + gtk3, 7 + webkitgtk, 8 + pkg-config, 9 + wrapGAppsHook, 10 + parallel-disk-usage, 11 + fetchFromGitHub, 12 + buildNpmPackage, 13 + rustPlatform, 14 + lib, 15 + stdenv, 16 + }: let 17 + pname = "squirreldisk"; 18 + version = "0.3.4"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "adileo"; 22 + repo = "squirreldisk"; 23 + rev = "v${version}"; 24 + hash = "sha256-As2nvc68knjeLPuX0QLBoybj8vuvkpS5Vr+7U7E5CjA="; 25 + }; 26 + frontend-build = buildNpmPackage { 27 + inherit version src; 28 + pname = "squirreldisk-ui"; 29 + 30 + npmDepsHash = "sha256-Japcn0KYP7aYIDK8+Ns+mrnbbAb0fLWXHIV2+yltI6I="; 31 + 32 + packageJSON = ./package.json; 33 + postBuild = '' 34 + cp -r dist/ $out 35 + ''; 36 + distPhase = "true"; 37 + dontInstall = true; 38 + }; 39 + in 40 + rustPlatform.buildRustPackage { 41 + inherit version src pname; 42 + 43 + sourceRoot = "${src.name}/src-tauri"; 44 + 45 + cargoLock = { 46 + lockFile = ./Cargo.lock; 47 + outputHashes = { 48 + "window-shadows-0.2.1" = "sha256-3meM04TG63PvB0M5wUH1cDMBo7ObcB0zdgwGt2aKHMs="; 49 + }; 50 + }; 51 + 52 + # copy the frontend static resources to final build directory 53 + # Also modify tauri.conf.json so that it expects the resources at the new location 54 + postPatch = '' 55 + cp ${./Cargo.lock} Cargo.lock 56 + 57 + mkdir -p frontend-build 58 + cp -r ${frontend-build}/* frontend-build 59 + 60 + substituteInPlace tauri.conf.json --replace-fail '"distDir": "../dist"' '"distDir": "./frontend-build"' 61 + 62 + # Copy pdu binary from nixpkgs, since the default packaged binary has issues. 63 + cp ${parallel-disk-usage}/bin/pdu bin/pdu-${stdenv.hostPlatform.config} 64 + ''; 65 + 66 + nativeBuildInputs = [pkg-config wrapGAppsHook]; 67 + buildInputs = [dbus openssl freetype libsoup gtk3 webkitgtk]; 68 + 69 + # Disable checkPhase, since the project doesn't contain tests 70 + doCheck = false; 71 + 72 + postInstall = '' 73 + mv $out/bin/squirreldisk-tauri $out/bin/squirreldisk 74 + ''; 75 + 76 + # WEBKIT_DISABLE_COMPOSITING_MODE essential in NVIDIA + compositor https://github.com/NixOS/nixpkgs/issues/212064#issuecomment-1400202079 77 + postFixup = '' 78 + wrapProgram "$out/bin/squirreldisk" \ 79 + --set WEBKIT_DISABLE_COMPOSITING_MODE 1 80 + ''; 81 + 82 + meta = with lib; { 83 + description = "Cross-platform disk usage analysis tool"; 84 + homepage = "https://www.squirreldisk.com/"; 85 + license = licenses.agpl3Only; 86 + maintainers = with maintainers; [peret]; 87 + mainProgram = "squirreldisk"; 88 + }; 89 + }
+2 -2
pkgs/data/icons/fluent-icon-theme/default.nix
··· 16 17 stdenvNoCC.mkDerivation rec { 18 inherit pname; 19 - version = "2023-06-07"; 20 21 src = fetchFromGitHub { 22 owner = "vinceliuice"; 23 repo = pname; 24 rev = version; 25 - hash = "sha256-drEAjIY/lacqncSeVeNmeRX6v4PnLvGo66Na1fuFXRg="; 26 }; 27 28 nativeBuildInputs = [ gtk3 jdupes ];
··· 16 17 stdenvNoCC.mkDerivation rec { 18 inherit pname; 19 + version = "2024-02-25"; 20 21 src = fetchFromGitHub { 22 owner = "vinceliuice"; 23 repo = pname; 24 rev = version; 25 + hash = "sha256-Cadp2+4kBZ74kdD5x0O85FszxvN6/sg6yccxughyX1Q"; 26 }; 27 28 nativeBuildInputs = [ gtk3 jdupes ];
+2 -2
pkgs/data/themes/whitesur/default.nix
··· 40 41 stdenv.mkDerivation rec { 42 pname = "whitesur-gtk-theme"; 43 - version = "2023-10-13"; 44 45 src = fetchFromGitHub { 46 owner = "vinceliuice"; 47 repo = pname; 48 rev = version; 49 - sha256 = "sha256-H8QdKCX6C36J7AfFd0VV9Rnm8LGXSfkxj5Yp2p+PduE="; 50 }; 51 52 nativeBuildInputs = [
··· 40 41 stdenv.mkDerivation rec { 42 pname = "whitesur-gtk-theme"; 43 + version = "2024-02-26"; 44 45 src = fetchFromGitHub { 46 owner = "vinceliuice"; 47 repo = pname; 48 rev = version; 49 + sha256 = "sha256-9HYsORTd5n0jUYmwiObPZ90mOGhR2j+tzs6Y1NNnrn4="; 50 }; 51 52 nativeBuildInputs = [
+6 -6
pkgs/development/haskell-modules/configuration-common.nix
··· 393 394 # Manually maintained 395 cachix-api = overrideCabal (drv: { 396 - version = "1.7.1"; 397 src = pkgs.fetchFromGitHub { 398 owner = "cachix"; 399 repo = "cachix"; 400 - rev = "v1.7.1"; 401 - sha256 = "sha256-neN8zGZuGXnLVdQw468z67o96mn8o1p4WGqPINl+NjU="; 402 }; 403 postUnpack = "sourceRoot=$sourceRoot/cachix-api"; 404 }) super.cachix-api; 405 cachix = (overrideCabal (drv: { 406 - version = "1.7.1"; 407 src = pkgs.fetchFromGitHub { 408 owner = "cachix"; 409 repo = "cachix"; 410 - rev = "v1.7.1"; 411 - sha256 = "sha256-neN8zGZuGXnLVdQw468z67o96mn8o1p4WGqPINl+NjU="; 412 }; 413 postUnpack = "sourceRoot=$sourceRoot/cachix"; 414 }) (lib.pipe
··· 393 394 # Manually maintained 395 cachix-api = overrideCabal (drv: { 396 + version = "1.7"; 397 src = pkgs.fetchFromGitHub { 398 owner = "cachix"; 399 repo = "cachix"; 400 + rev = "v1.7"; 401 + sha256 = "sha256-d9BohugsKajvjNgt+VyXHuDdLOFKr9mhwpdUNkpIP3s="; 402 }; 403 postUnpack = "sourceRoot=$sourceRoot/cachix-api"; 404 }) super.cachix-api; 405 cachix = (overrideCabal (drv: { 406 + version = "1.7"; 407 src = pkgs.fetchFromGitHub { 408 owner = "cachix"; 409 repo = "cachix"; 410 + rev = "v1.7"; 411 + sha256 = "sha256-d9BohugsKajvjNgt+VyXHuDdLOFKr9mhwpdUNkpIP3s="; 412 }; 413 postUnpack = "sourceRoot=$sourceRoot/cachix"; 414 }) (lib.pipe
+2 -2
pkgs/development/python-modules/cloudpathlib/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "cloudpathlib"; 24 - version = "0.17.0"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.7"; ··· 30 owner = "drivendataorg"; 31 repo = "cloudpathlib"; 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-rj8v4EUMPdB5zmbP4VQli2H6GjDor3BHaA95GwoKS5E="; 34 }; 35 36 nativeBuildInputs = [
··· 21 22 buildPythonPackage rec { 23 pname = "cloudpathlib"; 24 + version = "0.18.0"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.7"; ··· 30 owner = "drivendataorg"; 31 repo = "cloudpathlib"; 32 rev = "refs/tags/v${version}"; 33 + hash = "sha256-4CwwCdGUKUmie9PmAmrVxpAhk3b2WG+Cmx3QAADkyYQ="; 34 }; 35 36 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/deebot-client/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "deebot-client"; 23 - version = "5.2.2"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.11"; ··· 29 owner = "DeebotUniverse"; 30 repo = "client.py"; 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-ybZ8f3tqhj0SPbwjtgTB45y4Tx/lIyNZ5vShYsbIrfU="; 33 }; 34 35 nativeBuildInputs = [
··· 20 21 buildPythonPackage rec { 22 pname = "deebot-client"; 23 + version = "6.0.2"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.11"; ··· 29 owner = "DeebotUniverse"; 30 repo = "client.py"; 31 rev = "refs/tags/${version}"; 32 + hash = "sha256-PjM2bh79o4bBv3zQyFYehhdlvXKFW8Hk0ZKfZDAuiQU="; 33 }; 34 35 nativeBuildInputs = [
+24 -7
pkgs/development/python-modules/e3-core/default.nix
··· 1 - { buildPythonPackage 2 , colorama 3 , coverage 4 , distro ··· 6 , httpretty 7 , lib 8 , mock 9 , psutil 10 , pytest 11 , pytest-socket 12 , python-dateutil 13 , pyyaml 14 , requests 15 , requests-toolbelt 16 , stdenv 17 , setuptools ··· 24 25 buildPythonPackage rec { 26 pname = "e3-core"; 27 - version = "22.3.1"; 28 pyproject = true; 29 30 src = fetchFromGitHub { 31 owner = "AdaCore"; 32 repo = "e3-core"; 33 rev = "v${version}"; 34 - hash = "sha256-4StHOJldfeqApdF6D14Euzg9HvZ2e7G4/OQ0UrEbEIw="; 35 }; 36 37 - patches = [ ./0001-use-distro-over-ld.patch ]; 38 39 - nativeBuildInputs = [ setuptools ]; 40 41 propagatedBuildInputs = [ 42 - colorama pyyaml python-dateutil requests requests-toolbelt tqdm stevedore 43 ] ++ lib.optional stdenv.isLinux [ 44 # See setup.py:24. These are required only on Linux. Darwin has its own set 45 # of requirements. 46 - psutil distro 47 ]; 48 49 pythonImportsCheck = [ "e3" ];
··· 1 + { autoPatchelfHook 2 + , buildPythonPackage 3 , colorama 4 , coverage 5 , distro ··· 7 , httpretty 8 , lib 9 , mock 10 + , packaging 11 , psutil 12 , pytest 13 , pytest-socket 14 , python-dateutil 15 , pyyaml 16 , requests 17 + , requests-cache 18 , requests-toolbelt 19 , stdenv 20 , setuptools ··· 27 28 buildPythonPackage rec { 29 pname = "e3-core"; 30 + version = "22.4.0"; 31 pyproject = true; 32 33 src = fetchFromGitHub { 34 owner = "AdaCore"; 35 repo = "e3-core"; 36 rev = "v${version}"; 37 + hash = "sha256-dgEk2/qRfAYwUz+e5TWKUy/aPLpmyWZ32OV1i7QM9Fs="; 38 }; 39 40 + patches = [ 41 + ./0001-use-distro-over-ld.patch 42 + ]; 43 44 + nativeBuildInputs = [ 45 + autoPatchelfHook 46 + setuptools 47 + ]; 48 49 propagatedBuildInputs = [ 50 + colorama 51 + packaging 52 + pyyaml 53 + python-dateutil 54 + requests 55 + requests-cache 56 + requests-toolbelt 57 + tqdm 58 + stevedore 59 ] ++ lib.optional stdenv.isLinux [ 60 # See setup.py:24. These are required only on Linux. Darwin has its own set 61 # of requirements. 62 + psutil 63 + distro 64 ]; 65 66 pythonImportsCheck = [ "e3" ];
+39
pkgs/development/python-modules/e3-testsuite/default.nix
···
··· 1 + { buildPythonPackage 2 + , e3-core 3 + , fetchFromGitHub 4 + , lib 5 + , setuptools 6 + , stdenv 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "e3-testsuite"; 11 + version = "26.0"; 12 + pyproject = true; 13 + 14 + src = fetchFromGitHub { 15 + owner = "AdaCore"; 16 + repo = "e3-testsuite"; 17 + rev = "v${version}"; 18 + hash = "sha256-V20tX0zi2DRHO42udUcW/CDMyBxh1uSTgac0zZGubsI="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 24 + 25 + propagatedBuildInputs = [ 26 + e3-core 27 + ]; 28 + 29 + pythonImportsCheck = [ "e3" ]; 30 + 31 + meta = with lib; { 32 + changelog = "https://github.com/AdaCore/e3-testsuite/releases/tag/${src.rev}"; 33 + homepage = "https://github.com/AdaCore/e3-testsuite/"; 34 + description = "Generic testsuite framework in Python"; 35 + license = licenses.gpl3Only; 36 + maintainers = with maintainers; [ heijligen ]; 37 + platforms = platforms.linux; 38 + }; 39 + }
+11 -2
pkgs/development/python-modules/eigenpy/default.nix
··· 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 , boost 6 , eigen 7 , numpy 8 }: 9 10 stdenv.mkDerivation (finalAttrs: { 11 pname = "eigenpy"; 12 - version = "3.3.0"; 13 14 src = fetchFromGitHub { 15 owner = "stack-of-tasks"; 16 repo = finalAttrs.pname; 17 rev = "v${finalAttrs.version}"; 18 fetchSubmodules = true; 19 - hash = "sha256-INOg1oL5APMI2YZDe4yOJadhMsG7b+NfEcSr9FsdqeU="; 20 }; 21 22 strictDeps = true; 23 24 nativeBuildInputs = [ 25 cmake 26 ]; 27 28 buildInputs = [
··· 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 + , doxygen 6 , boost 7 , eigen 8 , numpy 9 + , scipy 10 }: 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "eigenpy"; 14 + version = "3.4.0"; 15 16 src = fetchFromGitHub { 17 owner = "stack-of-tasks"; 18 repo = finalAttrs.pname; 19 rev = "v${finalAttrs.version}"; 20 fetchSubmodules = true; 21 + hash = "sha256-/k5eltoeUW05FTjvStAOw+tguWLUaUced8TArrk4UDI="; 22 }; 23 24 + cmakeFlags = [ 25 + "-DINSTALL_DOCUMENTATION=ON" 26 + "-DBUILD_TESTING_SCIPY=ON" 27 + ]; 28 + 29 strictDeps = true; 30 31 nativeBuildInputs = [ 32 cmake 33 + doxygen 34 + scipy 35 ]; 36 37 buildInputs = [
+21 -14
pkgs/development/python-modules/flax/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , jaxlib 5 - , pythonRelaxDepsHook 6 - , setuptools-scm 7 - , jax 8 , msgpack 9 , numpy 10 , optax 11 , pyyaml 12 , rich 13 , tensorstore 14 , typing-extensions 15 - , matplotlib 16 - , cloudpickle 17 - , einops 18 - , keras 19 - , pytest-xdist 20 - , pytestCheckHook 21 - , tensorflow 22 }: 23 24 buildPythonPackage rec { ··· 26 version = "0.7.5"; 27 pyproject = true; 28 29 src = fetchFromGitHub { 30 owner = "google"; 31 repo = "flax"; ··· 44 msgpack 45 numpy 46 optax 47 pyyaml 48 rich 49 tensorstore ··· 75 disabledTestPaths = [ 76 # Docs test, needs extra deps + we're not interested in it. 77 "docs/_ext/codediff_test.py" 78 - 79 # The tests in `examples` are not designed to be executed from a single test 80 # session and thus either have the modules that conflict with each other or 81 # wrong import paths, depending on how they're invoked. Many tests also have ··· 83 # `tensorflow_datasets`, `vocabulary`) so the benefits of trying to run them 84 # would be limited anyway. 85 "examples/*" 86 - 87 # See https://github.com/google/flax/issues/3232. 88 "tests/jax_utils_test.py" 89 90 - # Requires orbax which is not packaged as of 2023-07-27. 91 - "tests/checkpoints_test.py" 92 ]; 93 94 meta = with lib; {
··· 1 { lib 2 , buildPythonPackage 3 + , cloudpickle 4 + , einops 5 , fetchFromGitHub 6 + , jax 7 , jaxlib 8 + , keras 9 + , matplotlib 10 , msgpack 11 , numpy 12 , optax 13 + , orbax-checkpoint 14 + , pytest-xdist 15 + , pytestCheckHook 16 + , pythonOlder 17 + , pythonRelaxDepsHook 18 , pyyaml 19 , rich 20 + , setuptools-scm 21 + , tensorflow 22 , tensorstore 23 , typing-extensions 24 }: 25 26 buildPythonPackage rec { ··· 28 version = "0.7.5"; 29 pyproject = true; 30 31 + disabled = pythonOlder "3.8"; 32 + 33 src = fetchFromGitHub { 34 owner = "google"; 35 repo = "flax"; ··· 48 msgpack 49 numpy 50 optax 51 + orbax-checkpoint 52 pyyaml 53 rich 54 tensorstore ··· 80 disabledTestPaths = [ 81 # Docs test, needs extra deps + we're not interested in it. 82 "docs/_ext/codediff_test.py" 83 # The tests in `examples` are not designed to be executed from a single test 84 # session and thus either have the modules that conflict with each other or 85 # wrong import paths, depending on how they're invoked. Many tests also have ··· 87 # `tensorflow_datasets`, `vocabulary`) so the benefits of trying to run them 88 # would be limited anyway. 89 "examples/*" 90 # See https://github.com/google/flax/issues/3232. 91 "tests/jax_utils_test.py" 92 + # Requires tree 93 + "tests/tensorboard_test.py" 94 + ]; 95 96 + disabledTests = [ 97 + # ValueError: Checkpoint path should be absolute 98 + "test_overwrite_checkpoints0" 99 ]; 100 101 meta = with lib; {
+12
pkgs/development/python-modules/floret/cstdint.patch
···
··· 1 + diff --git a/src/args.cc b/src/args.cc 2 + index a8975e81624c..99854c919341 100644 3 + --- a/src/args.cc 4 + +++ b/src/args.cc 5 + @@ -10,6 +10,7 @@ 6 + 7 + #include <stdlib.h> 8 + 9 + +#include <cstdint> 10 + #include <iostream> 11 + #include <stdexcept> 12 + #include <string>
+2
pkgs/development/python-modules/floret/default.nix
··· 23 hash = "sha256-7vkw6H0ZQoHEwNusY6QWh/vPbSCdP1ZaaqABHsZH6hQ="; 24 }; 25 26 nativeBuildInputs = [ 27 pybind11 28 setuptools
··· 23 hash = "sha256-7vkw6H0ZQoHEwNusY6QWh/vPbSCdP1ZaaqABHsZH6hQ="; 24 }; 25 26 + patches = [./cstdint.patch ]; 27 + 28 nativeBuildInputs = [ 29 pybind11 30 setuptools
+2 -2
pkgs/development/python-modules/holidays/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "holidays"; 24 - version = "0.42"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.8"; ··· 30 owner = "vacanza"; 31 repo = "python-holidays"; 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-oVuzX/H5jj/c4dbPGmXUnZeDbgSd9v9qP2dXe6+PaUQ="; 34 }; 35 36 nativeBuildInputs = [
··· 21 22 buildPythonPackage rec { 23 pname = "holidays"; 24 + version = "0.43"; 25 pyproject = true; 26 27 disabled = pythonOlder "3.8"; ··· 30 owner = "vacanza"; 31 repo = "python-holidays"; 32 rev = "refs/tags/v${version}"; 33 + hash = "sha256-8Qm8hzGVkaYLwqUcqUxcY4iDR1jrhnSoBS8E2Wewb+U="; 34 }; 35 36 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/indexed-bzip2/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "indexed_bzip2"; 9 - version = "1.5.0"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.6"; 13 14 src = fetchPypi { 15 inherit pname version; 16 - hash = "sha256-tKf9odadfQZQYJz//vWYpeB99Z8VLg+hEPvfEHXgdnM="; 17 }; 18 19 # has no tests
··· 6 7 buildPythonPackage rec { 8 pname = "indexed_bzip2"; 9 + version = "1.6.0"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.6"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + hash = "sha256-3HUiigZR91/nbOAMOuSHGcPtqkkEaj3VepyMhmKOHpI="; 17 }; 18 19 # has no tests
+19 -19
pkgs/development/python-modules/kbcstorage/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchFromGitHub 4 , pythonOlder 5 - 6 - # build 7 , setuptools 8 , setuptools-git-versioning 9 , setuptools-scm 10 - 11 - # propagates 12 - , azure-storage-blob 13 - , boto3 14 - , requests 15 - 16 - # tests 17 - , responses 18 , unittestCheckHook 19 }: 20 buildPythonPackage rec { 21 pname = "sapi-python-client"; 22 - version = "0.7.1"; 23 - format = "pyproject"; 24 25 disabled = pythonOlder "3.7"; 26 27 src = fetchFromGitHub { 28 owner = "keboola"; 29 - repo = pname; 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-74sChw6eMkBtfHV6hiaaLNOr/J0Sa73LB93Z8muLaiI="; 32 }; 33 34 nativeBuildInputs = [ 35 setuptools 36 setuptools-git-versioning ··· 40 propagatedBuildInputs = [ 41 azure-storage-blob 42 boto3 43 requests 44 ]; 45 46 # Requires API token and an active Keboola bucket 47 # ValueError: Root URL is required. 48 doCheck = false; 49 - 50 - nativeCheckInputs = [ 51 - unittestCheckHook 52 - responses 53 - ]; 54 55 pythonImportsCheck = [ 56 "kbcstorage"
··· 1 { lib 2 + , azure-storage-blob 3 + , boto3 4 , buildPythonPackage 5 , fetchFromGitHub 6 + , python-dotenv 7 , pythonOlder 8 + , requests 9 + , responses 10 , setuptools 11 , setuptools-git-versioning 12 , setuptools-scm 13 , unittestCheckHook 14 + , urllib3 15 }: 16 + 17 buildPythonPackage rec { 18 pname = "sapi-python-client"; 19 + version = "0.7.2"; 20 + pyproject = true; 21 22 disabled = pythonOlder "3.7"; 23 24 src = fetchFromGitHub { 25 owner = "keboola"; 26 + repo = "sapi-python-client"; 27 rev = "refs/tags/${version}"; 28 + hash = "sha256-uZo2kEq7zIMGRlhX36kZyihQPZegw5XgVzgVQQOmpc4="; 29 }; 30 31 + postPatch = '' 32 + substituteInPlace pyproject.toml \ 33 + --replace-fail "urllib3<2.0.0" "urllib3" 34 + ''; 35 + 36 nativeBuildInputs = [ 37 setuptools 38 setuptools-git-versioning ··· 42 propagatedBuildInputs = [ 43 azure-storage-blob 44 boto3 45 + python-dotenv 46 requests 47 + responses 48 + urllib3 49 ]; 50 51 # Requires API token and an active Keboola bucket 52 # ValueError: Root URL is required. 53 doCheck = false; 54 55 pythonImportsCheck = [ 56 "kbcstorage"
+2 -2
pkgs/development/python-modules/pinecone-client/default.nix
··· 16 }: 17 buildPythonPackage rec { 18 pname = "pinecone-client"; 19 - version = "3.0.3"; 20 pyproject = true; 21 22 src = fetchPypi { 23 pname = "pinecone_client"; 24 inherit version; 25 - hash = "sha256-KtPvdiftxNnuJI2XgYYcQ0HW0noVvAX2vvU9lYg303Q="; 26 }; 27 28 nativeBuildInputs = [
··· 16 }: 17 buildPythonPackage rec { 18 pname = "pinecone-client"; 19 + version = "3.1.0"; 20 pyproject = true; 21 22 src = fetchPypi { 23 pname = "pinecone_client"; 24 inherit version; 25 + hash = "sha256-RbggYBP5GpgrmU8fuqOefoyZ0w7zd4qfMZxDuMmS/EI="; 26 }; 27 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/ratarmount/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "ratarmount"; 11 - version = "0.14.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-P+p0h+KuOsunPsXbRwxzAhr1XcEqMjQxHeHmA29+pDQ="; 19 }; 20 21 propagatedBuildInputs = [ ratarmountcore fusepy ];
··· 8 9 buildPythonPackage rec { 10 pname = "ratarmount"; 11 + version = "0.14.1"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.6"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-TrOYf9kbcRM8E9vq6sjswK2BQ0eA5zSGAIiNAfIZtnk="; 19 }; 20 21 propagatedBuildInputs = [ ratarmountcore fusepy ];
+2 -2
pkgs/development/python-modules/trimesh/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "trimesh"; 13 - version = "4.1.5"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - hash = "sha256-m7Qhx8vdQAtvBtJS+4nQQSh0qnp/TRXoch/WJgk/7EI="; 21 }; 22 23 nativeBuildInputs = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "trimesh"; 13 + version = "4.1.6"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + hash = "sha256-ps99+3JDyKuB25G1hho6MClDFp48N/dBarHZUpcZK30="; 21 }; 22 23 nativeBuildInputs = [ setuptools ];
+11 -2
pkgs/development/python-modules/xknx/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "xknx"; 15 - version = "2.12.0"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "XKNX"; 22 repo = "xknx"; 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-Fwo76tvkLLx8QJeokuGohhnt83eGBMyWIUSHJGuQWJ4="; 25 }; 26 27 patches = [ ··· 53 "test_scan_timeout" 54 "test_start_secure_routing_knx_keys" 55 "test_start_secure_routing_manual" 56 ]; 57 58 meta = with lib; {
··· 12 13 buildPythonPackage rec { 14 pname = "xknx"; 15 + version = "2.12.1"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "XKNX"; 22 repo = "xknx"; 23 rev = "refs/tags/${version}"; 24 + hash = "sha256-O8xhih/EVULTq4jdmxInzXRO4m6PJA9pyzsHjR+58dQ="; 25 }; 26 27 patches = [ ··· 53 "test_scan_timeout" 54 "test_start_secure_routing_knx_keys" 55 "test_start_secure_routing_manual" 56 + # RuntimeError: Event loop is closed 57 + "test_has_group_address_localtime" 58 + "test_invalid_authentication" 59 + "test_invalid_frames" 60 + "test_no_authentication" 61 + "test_process_read_localtime" 62 + "test_sync_date" 63 + "test_sync_datetime" 64 + "test_sync_time_local" 65 ]; 66 67 meta = with lib; {
+2 -2
pkgs/development/python-modules/xknxproject/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "xknxproject"; 15 - version = "3.6.0"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.9"; ··· 21 owner = "XKNX"; 22 repo = "xknxproject"; 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-7WK4TgrTuUwR33d1N8+VmgZ6iylyfIJbFCyxh49luL0="; 25 }; 26 27 nativeBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "xknxproject"; 15 + version = "3.7.0"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.9"; ··· 21 owner = "XKNX"; 22 repo = "xknxproject"; 23 rev = "refs/tags/${version}"; 24 + hash = "sha256-tw/hHiiW4ZGlrbQmuIihJmhyIL++Rjpg6q8AdKNsn14="; 25 }; 26 27 nativeBuildInputs = [
+2 -2
pkgs/development/tools/continuous-integration/github-runner/default.nix
··· 23 24 buildDotnetModule rec { 25 pname = "github-runner"; 26 - version = "2.313.0"; 27 28 src = fetchFromGitHub { 29 owner = "actions"; 30 repo = "runner"; 31 rev = "v${version}"; 32 - hash = "sha256-0CclkbJ8AfffdfVNXacnpgFOS+ONk6eP1LTyFa12xU4="; 33 leaveDotGit = true; 34 postFetch = '' 35 git -C $out rev-parse --short HEAD > $out/.git-revision
··· 23 24 buildDotnetModule rec { 25 pname = "github-runner"; 26 + version = "2.314.0"; 27 28 src = fetchFromGitHub { 29 owner = "actions"; 30 repo = "runner"; 31 rev = "v${version}"; 32 + hash = "sha256-qwFNEH29lu+RFqZBRD2Bo6E8gI07nnhFooWQNrgOQx0="; 33 leaveDotGit = true; 34 postFetch = '' 35 git -C $out rev-parse --short HEAD > $out/.git-revision
+2 -2
pkgs/development/tools/fastddsgen/default.nix
··· 1 { lib, stdenv, runtimeShell, writeText, fetchFromGitHub, gradle_7, openjdk17, git, perl, cmake }: 2 let 3 pname = "fastddsgen"; 4 - version = "3.2.1"; 5 6 src = fetchFromGitHub { 7 owner = "eProsima"; 8 repo = "Fast-DDS-Gen"; 9 rev = "v${version}"; 10 fetchSubmodules = true; 11 - hash = "sha256-3REInKZ787RSXED8iAMlt2mJodJTp5+/ldQsbUGpn0g="; 12 }; 13 14 gradle = gradle_7;
··· 1 { lib, stdenv, runtimeShell, writeText, fetchFromGitHub, gradle_7, openjdk17, git, perl, cmake }: 2 let 3 pname = "fastddsgen"; 4 + version = "3.3.0"; 5 6 src = fetchFromGitHub { 7 owner = "eProsima"; 8 repo = "Fast-DDS-Gen"; 9 rev = "v${version}"; 10 fetchSubmodules = true; 11 + hash = "sha256-oqbSIzsYUwD8bTqGKZ9he9d18EDq9mHZFoNUp0RK0qU="; 12 }; 13 14 gradle = gradle_7;
+3 -3
pkgs/development/tools/misc/reviewdog/default.nix
··· 2 3 buildGoModule rec { 4 pname = "reviewdog"; 5 - version = "0.17.0"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 - hash = "sha256-zr98hzWU27d+HCKvzTch7FkpUOWkHvpuMIq2cfWNRHQ="; 12 }; 13 14 - vendorHash = "sha256-S5SEM6EFXI2Vig8ze5kGOCIL5bLF6CMy/TKV+/3zAjI="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "reviewdog"; 5 + version = "0.17.1"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 + hash = "sha256-l7jQaOFNhhWqkYaTd8BdH9au/wjlnWZnV5DAco93qlQ="; 12 }; 13 14 + vendorHash = "sha256-p/WvGGadf/O2DFIUWjw7mpg8DhcaIYlgp1xgKV89+GM="; 15 16 doCheck = false; 17
+3 -3
pkgs/development/tools/rust/cargo-mobile2/default.nix
··· 12 let 13 inherit (darwin.apple_sdk.frameworks) CoreServices; 14 pname = "cargo-mobile2"; 15 - version = "0.10.2"; 16 in 17 rustPlatform.buildRustPackage { 18 inherit pname version; ··· 20 owner = "tauri-apps"; 21 repo = pname; 22 rev = "cargo-mobile2-v${version}"; 23 - hash = "sha256-LRQfntEbY8K1kepgn2Gww1ixWmvKHuw6DPT9j9MG118="; 24 }; 25 26 # Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at 27 # https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202 28 # sourceRoot = "${src.name}/tooling/cli"; 29 30 - cargoHash = "sha256-yWkyIwZ3KPMhlVajCIAYonFveGFqzB5qBGO5WdzjxNs="; 31 32 preBuild = '' 33 mkdir -p $out/share/
··· 12 let 13 inherit (darwin.apple_sdk.frameworks) CoreServices; 14 pname = "cargo-mobile2"; 15 + version = "0.10.3"; 16 in 17 rustPlatform.buildRustPackage { 18 inherit pname version; ··· 20 owner = "tauri-apps"; 21 repo = pname; 22 rev = "cargo-mobile2-v${version}"; 23 + hash = "sha256-awf4BvDUeRfg66mv7unN0uKviLI6f1m7s1sQKEeBm2E="; 24 }; 25 26 # Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at 27 # https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202 28 # sourceRoot = "${src.name}/tooling/cli"; 29 30 + cargoHash = "sha256-rqNhkuQVQ6MHUX1hcwqPS46LpsDZwJ6COvJztap7X4w="; 31 32 preBuild = '' 33 mkdir -p $out/share/
+3 -3
pkgs/development/tools/wails/default.nix
··· 14 15 buildGoModule rec { 16 pname = "wails"; 17 - version = "2.7.1"; 18 19 src = fetchFromGitHub { 20 owner = "wailsapp"; 21 repo = pname; 22 rev = "v${version}"; 23 - hash = "sha256-KC5BkIaDLWT1soHr1FpfZWnEzyZTMUPaGMTap7P1W98="; 24 } + "/v2"; 25 26 - vendorHash = "sha256-EoWsDo39tS4KbcOVgrd1esSzEseC2+ZfMj4+KvymwF8="; 27 28 proxyVendor = true; 29
··· 14 15 buildGoModule rec { 16 pname = "wails"; 17 + version = "2.8.0"; 18 19 src = fetchFromGitHub { 20 owner = "wailsapp"; 21 repo = pname; 22 rev = "v${version}"; 23 + hash = "sha256-MHwIRanmgpjTKM+ILSQheCd9+XUwVTCVrREqntxpv7Q="; 24 } + "/v2"; 25 26 + vendorHash = "sha256-0cGmJEi7OfMZS7ObPBLHOVqKfvnlpHBiGRjSdV6wxE4="; 27 28 proxyVendor = true; 29
+2 -2
pkgs/development/tools/wxformbuilder/default.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "wxformbuilder"; 14 - version = "4.0.0"; 15 16 src = fetchFromGitHub { 17 owner = "wxFormBuilder"; ··· 25 --replace "\$Format:%(describe)\$" "$(git -C $out rev-parse --short HEAD)" 26 rm -rf $out/.git 27 ''; 28 - hash = "sha256-Lqta+u9WVwUREsR7aH+2DJn0oM5QwlwRSBImuwNkmS4="; 29 }; 30 31 postPatch = ''
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "wxformbuilder"; 14 + version = "4.1.0"; 15 16 src = fetchFromGitHub { 17 owner = "wxFormBuilder"; ··· 25 --replace "\$Format:%(describe)\$" "$(git -C $out rev-parse --short HEAD)" 26 rm -rf $out/.git 27 ''; 28 + hash = "sha256-Ob+6MAf2iQGd3lgeN+dLfscpmYYrzD3dsN+2ZmvJog0="; 29 }; 30 31 postPatch = ''
+2 -2
pkgs/os-specific/linux/ipset/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "ipset"; 5 - version = "7.19"; 6 7 src = fetchurl { 8 url = "https://ipset.netfilter.org/${pname}-${version}.tar.bz2"; 9 - sha256 = "sha256-m8H7pI1leG4+C2Pca2aahmgj13hAxpkMDGsjB47CxNY="; 10 }; 11 12 nativeBuildInputs = [ pkg-config ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "ipset"; 5 + version = "7.21"; 6 7 src = fetchurl { 8 url = "https://ipset.netfilter.org/${pname}-${version}.tar.bz2"; 9 + sha256 = "sha256-4sbOT886yziTyl01yGk1+ArXb8XMrmARhYQt92DgvGk="; 10 }; 11 12 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/os-specific/linux/kernel/kernels-org.json
··· 1 { 2 "testing": { 3 - "version": "6.8-rc5", 4 - "hash": "sha256:0cfv90lf0vccpasqxilr62p23qy5in5b9pz2916iifqs9sngj469" 5 }, 6 "6.5": { 7 "version": "6.5.13",
··· 1 { 2 "testing": { 3 + "version": "6.8-rc6", 4 + "hash": "sha256:03ci53snbv917ccyjdm3xzl2fwijq5da7nkg05dpwb99wrzp8fkd" 5 }, 6 "6.5": { 7 "version": "6.5.13",
+2 -2
pkgs/os-specific/linux/kernel/linux-libre.nix
··· 1 { stdenv, lib, fetchsvn, linux 2 , scripts ? fetchsvn { 3 url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/"; 4 - rev = "19489"; 5 - sha256 = "1adnk4710iyq87bj48bfxzmzhv5hk0x3fmyz6ydk5af364fl87mk"; 6 } 7 , ... 8 }:
··· 1 { stdenv, lib, fetchsvn, linux 2 , scripts ? fetchsvn { 3 url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/"; 4 + rev = "19491"; 5 + sha256 = "047gvbg8dlmnwqll17hkla2rqf97g8p90z4jncqdk5hf2v5wqgi7"; 6 } 7 , ... 8 }:
+5 -2
pkgs/servers/etcd/3.5.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, symlinkJoin, nixosTests }: 2 3 let 4 version = "3.5.12"; ··· 67 68 passthru = { 69 inherit etcdserver etcdutl etcdctl; 70 - tests = { inherit (nixosTests) etcd etcd-cluster; }; 71 }; 72 73 paths = [
··· 1 + { lib, buildGoModule, fetchFromGitHub, symlinkJoin, nixosTests, k3s }: 2 3 let 4 version = "3.5.12"; ··· 67 68 passthru = { 69 inherit etcdserver etcdutl etcdctl; 70 + tests = { 71 + inherit (nixosTests) etcd etcd-cluster; 72 + k3s = k3s.passthru.tests.etcd; 73 + }; 74 }; 75 76 paths = [
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 # Do not edit! 3 4 { 5 - version = "2024.2.3"; 6 components = { 7 "3_day_blinds" = ps: with ps; [ 8 ];
··· 2 # Do not edit! 3 4 { 5 + version = "2024.2.4"; 6 components = { 7 "3_day_blinds" = ps: with ps; [ 8 ];
+3 -3
pkgs/servers/home-assistant/default.nix
··· 453 extraBuildInputs = extraPackages python.pkgs; 454 455 # Don't forget to run parse-requirements.py after updating 456 - hassVersion = "2024.2.3"; 457 458 in python.pkgs.buildPythonApplication rec { 459 pname = "homeassistant"; ··· 471 owner = "home-assistant"; 472 repo = "core"; 473 rev = "refs/tags/${version}"; 474 - hash = "sha256-di9KdglYg+bzGvjGKgNbGRfH1tu96o82WzRUIaAejik="; 475 }; 476 477 # Secondary source is pypi sdist for translations 478 sdist = fetchPypi { 479 inherit pname version; 480 - hash = "sha256-iCcDuQb+l6+SV+E9dPtKlU3v94Q9On75csT5STMdqVo="; 481 }; 482 483 nativeBuildInputs = with python.pkgs; [
··· 453 extraBuildInputs = extraPackages python.pkgs; 454 455 # Don't forget to run parse-requirements.py after updating 456 + hassVersion = "2024.2.4"; 457 458 in python.pkgs.buildPythonApplication rec { 459 pname = "homeassistant"; ··· 471 owner = "home-assistant"; 472 repo = "core"; 473 rev = "refs/tags/${version}"; 474 + hash = "sha256-k1Rfx8TsMBbLFfaY6FAn5ebyZlHbxg0k/HYXVRIkNMU="; 475 }; 476 477 # Secondary source is pypi sdist for translations 478 sdist = fetchPypi { 479 inherit pname version; 480 + hash = "sha256-rkD1rZz4sYV1L78c2gc4g/cGoxJRYqK41SUOskeoqYg="; 481 }; 482 483 nativeBuildInputs = with python.pkgs; [
+2 -2
pkgs/servers/home-assistant/stubs.nix
··· 8 9 buildPythonPackage rec { 10 pname = "homeassistant-stubs"; 11 - version = "2024.2.3"; 12 format = "pyproject"; 13 14 disabled = python.version != home-assistant.python.version; ··· 17 owner = "KapJI"; 18 repo = "homeassistant-stubs"; 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-kBr9NaP1FBTMBloAXEpx4s4iMe1T45i7Gui1aULQPXg="; 21 }; 22 23 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "homeassistant-stubs"; 11 + version = "2024.2.4"; 12 format = "pyproject"; 13 14 disabled = python.version != home-assistant.python.version; ··· 17 owner = "KapJI"; 18 repo = "homeassistant-stubs"; 19 rev = "refs/tags/${version}"; 20 + hash = "sha256-cKVVP69IIY/KPnEsM3ann0oZ2GUNN+2Ee8EnqjcFTDk="; 21 }; 22 23 nativeBuildInputs = [
+4 -4
pkgs/servers/keycloak/scim-keycloak-user-storage-spi/default.nix
··· 5 6 maven.buildMavenPackage { 7 pname = "scim-keycloak-user-storage-spi"; 8 - version = "unstable-2023-07-10"; 9 10 src = fetchFromGitHub { 11 owner = "justin-stephenson"; 12 repo = "scim-keycloak-user-storage-spi"; 13 - rev = "54a3fd77b05079c9ebd931e8b6a3725310a1f7b7"; 14 - hash = "sha256-rQR8+LevFHTFLoyCPSu50jdSXu4YgBibjVB804rEsFs="; 15 }; 16 17 - mvnHash = "sha256-vNPSNoOmtD1UMfWvLm8CH7RRatyeu3fnX9zteZpkay0="; 18 19 installPhase = '' 20 install -D "target/scim-user-spi-0.0.1-SNAPSHOT.jar" "$out/scim-user-spi-0.0.1-SNAPSHOT.jar"
··· 5 6 maven.buildMavenPackage { 7 pname = "scim-keycloak-user-storage-spi"; 8 + version = "unstable-2024-02-14"; 9 10 src = fetchFromGitHub { 11 owner = "justin-stephenson"; 12 repo = "scim-keycloak-user-storage-spi"; 13 + rev = "6c59915836d9a559983326bbb87f895324bb75e4"; 14 + hash = "sha256-BSso9lU542Aroxu0RIX6NARc10lGZ04A/WIWOVtdxHw="; 15 }; 16 17 + mvnHash = "sha256-xbGlVZl3YtbF372kCDh+UdK5pLe6C6WnGgbEXahlyLw="; 18 19 installPhase = '' 20 install -D "target/scim-user-spi-0.0.1-SNAPSHOT.jar" "$out/scim-user-spi-0.0.1-SNAPSHOT.jar"
+7 -3
pkgs/tools/graphics/ueberzugpp/default.nix pkgs/by-name/ue/ueberzugpp/package.nix
··· 3 , fetchFromGitHub 4 , cmake 5 , pkg-config 6 - , cli11 7 , openssl 8 , zeromq 9 , cppzmq ··· 16 , libsixel 17 , microsoft-gsl 18 , chafa 19 , enableOpencv ? stdenv.isLinux 20 , opencv 21 , enableWayland ? stdenv.isLinux ··· 28 29 stdenv.mkDerivation rec { 30 pname = "ueberzugpp"; 31 - version = "2.9.2"; 32 33 src = fetchFromGitHub { 34 owner = "jstkdng"; 35 repo = "ueberzugpp"; 36 rev = "v${version}"; 37 - hash = "sha256-yIohpJRytmwt+6DLCWpmBiuCm9GcCHsGmpTI64/3d8U="; 38 }; 39 40 strictDeps = true; ··· 58 microsoft-gsl 59 chafa 60 cli11 61 ] ++ lib.optionals enableOpencv [ 62 opencv 63 ] ++ lib.optionals enableWayland [
··· 3 , fetchFromGitHub 4 , cmake 5 , pkg-config 6 , openssl 7 , zeromq 8 , cppzmq ··· 15 , libsixel 16 , microsoft-gsl 17 , chafa 18 + , cli11 19 + , libexif 20 + , range-v3 21 , enableOpencv ? stdenv.isLinux 22 , opencv 23 , enableWayland ? stdenv.isLinux ··· 30 31 stdenv.mkDerivation rec { 32 pname = "ueberzugpp"; 33 + version = "2.9.4"; 34 35 src = fetchFromGitHub { 36 owner = "jstkdng"; 37 repo = "ueberzugpp"; 38 rev = "v${version}"; 39 + hash = "sha256-D+7a+3Vxrt+XUq7c2F2eqi8ZGQ2eZd37aTqighWEKPs="; 40 }; 41 42 strictDeps = true; ··· 60 microsoft-gsl 61 chafa 62 cli11 63 + libexif 64 + range-v3 65 ] ++ lib.optionals enableOpencv [ 66 opencv 67 ] ++ lib.optionals enableWayland [
-76
pkgs/tools/misc/byobu/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper 2 - , python3, perl, textual-window-manager 3 - , gettext, vim, bc, screen }: 4 - 5 - let 6 - pythonEnv = python3.withPackages (ps: with ps; [ snack ]); 7 - in 8 - stdenv.mkDerivation rec { 9 - version = "5.133"; 10 - pname = "byobu"; 11 - 12 - src = fetchurl { 13 - url = "https://launchpad.net/byobu/trunk/${version}/+download/byobu_${version}.orig.tar.gz"; 14 - sha256 = "0qvmmdnvwqbgbhn5c8asmrmjhclcl029py2d2zvmd7h5ij7s93jd"; 15 - }; 16 - 17 - doCheck = true; 18 - 19 - strictdeps = true; 20 - nativeBuildInputs = [ makeWrapper gettext ]; 21 - buildInputs = [ perl ]; # perl is needed for `lib/byobu/include/*` scripts 22 - propagatedBuildInputs = [ textual-window-manager screen ]; 23 - 24 - postPatch = '' 25 - substituteInPlace usr/bin/byobu-export.in \ 26 - --replace "gettext" "${gettext}/bin/gettext" 27 - substituteInPlace usr/lib/byobu/menu \ 28 - --replace "gettext" "${gettext}/bin/gettext" 29 - ''; 30 - 31 - postInstall = '' 32 - # Byobu does not compile its po files for some reason 33 - for po in po/*.po; do 34 - lang=''${po#po/} 35 - lang=''${lang%.po} 36 - # Path where byobu looks for translations as observed in the source code and strace 37 - mkdir -p $out/share/byobu/po/$lang/LC_MESSAGES/ 38 - msgfmt $po -o $out/share/byobu/po/$lang/LC_MESSAGES/byobu.mo 39 - done 40 - 41 - # Override the symlinks otherwise they mess with the wrapping 42 - cp --remove-destination $out/bin/byobu $out/bin/byobu-screen 43 - cp --remove-destination $out/bin/byobu $out/bin/byobu-tmux 44 - 45 - for i in $out/bin/byobu*; do 46 - # We don't use the usual ".$package-wrapped" because arg0 within the shebang scripts 47 - # points to the filename and byobu matches against this to know which backend 48 - # to start with 49 - file=".$(basename $i)" 50 - mv $i $out/bin/$file 51 - makeWrapper "$out/bin/$file" "$out/bin/$(basename $i)" --argv0 $(basename $i) \ 52 - --set BYOBU_PATH ${lib.escapeShellArg (lib.makeBinPath [ vim bc ])} \ 53 - --set BYOBU_PYTHON "${pythonEnv}/bin/python" 54 - done 55 - ''; 56 - 57 - meta = with lib; { 58 - homepage = "https://launchpad.net/byobu/"; 59 - description = "Text-based window manager and terminal multiplexer"; 60 - 61 - longDescription = 62 - ''Byobu is a GPLv3 open source text-based window manager and terminal multiplexer. 63 - It was originally designed to provide elegant enhancements to the otherwise functional, 64 - plain, practical GNU Screen, for the Ubuntu server distribution. 65 - Byobu now includes an enhanced profiles, convenient keybindings, 66 - configuration utilities, and toggle-able system status notifications for both 67 - the GNU Screen window manager and the more modern Tmux terminal multiplexer, 68 - and works on most Linux, BSD, and Mac distributions. 69 - ''; 70 - 71 - license = licenses.gpl3; 72 - 73 - platforms = platforms.unix; 74 - maintainers = with maintainers; [ qknight berbiche ]; 75 - }; 76 - }
···
+3 -3
pkgs/tools/security/faraday-cli/default.nix
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "faraday-cli"; 8 - version = "2.1.10"; 9 pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "infobyte"; 13 - repo = pname; 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-7Yg2m0xHpBPZ58gJodSYO8vXaxSlr4GK1Lin63WozOE="; 16 }; 17 18 nativeBuildInputs = with python3.pkgs; [
··· 5 6 python3.pkgs.buildPythonApplication rec { 7 pname = "faraday-cli"; 8 + version = "2.1.11"; 9 pyproject = true; 10 11 src = fetchFromGitHub { 12 owner = "infobyte"; 13 + repo = "faraday-cli"; 14 rev = "refs/tags/${version}"; 15 + hash = "sha256-bCiiX5dYodnWkKeNo2j3PGMz17F5y2X4ECZiStDdK5U="; 16 }; 17 18 nativeBuildInputs = with python3.pkgs; [
+7 -6
pkgs/top-level/all-packages.nix
··· 4506 4507 bws = callPackage ../tools/security/bws { }; 4508 4509 - byobu = callPackage ../tools/misc/byobu { 4510 - # Choices: [ tmux screen ]; 4511 - textual-window-manager = tmux; 4512 - }; 4513 - 4514 bsh = fetchurl { 4515 url = "http://www.beanshell.org/bsh-2.0b5.jar"; 4516 hash = "sha256-YjIZlWOAc1SzvLWs6z3BNlAvAixrDvdDmHqD9m/uWlw="; ··· 32592 32593 imgp = python3Packages.callPackage ../applications/graphics/imgp { }; 32594 32595 inframap = callPackage ../applications/networking/cluster/inframap { }; 32596 32597 inkcut = libsForQt5.callPackage ../applications/misc/inkcut { }; ··· 35746 35747 ueberzug = with python3Packages; toPythonApplication ueberzug; 35748 35749 - ueberzugpp = darwin.apple_sdk_11_0.callPackage ../tools/graphics/ueberzugpp { }; 35750 35751 uefi-run = callPackage ../tools/virtualization/uefi-run { }; 35752
··· 4506 4507 bws = callPackage ../tools/security/bws { }; 4508 4509 bsh = fetchurl { 4510 url = "http://www.beanshell.org/bsh-2.0b5.jar"; 4511 hash = "sha256-YjIZlWOAc1SzvLWs6z3BNlAvAixrDvdDmHqD9m/uWlw="; ··· 32587 32588 imgp = python3Packages.callPackage ../applications/graphics/imgp { }; 32589 32590 + imhex = callPackage ../by-name/im/imhex/package.nix { 32591 + llvm = llvm_17; 32592 + }; 32593 + 32594 inframap = callPackage ../applications/networking/cluster/inframap { }; 32595 32596 inkcut = libsForQt5.callPackage ../applications/misc/inkcut { }; ··· 35745 35746 ueberzug = with python3Packages; toPythonApplication ueberzug; 35747 35748 + ueberzugpp = callPackage ../by-name/ue/ueberzugpp/package.nix { 35749 + stdenv = if stdenv.isDarwin then overrideSDK stdenv "11.0" else stdenv; 35750 + }; 35751 35752 uefi-run = callPackage ../tools/virtualization/uefi-run { }; 35753
+1 -1
pkgs/top-level/linux-kernels.nix
··· 669 }); 670 671 packageAliases = { 672 - linux_default = packages.linux_6_1; 673 # Update this when adding the newest kernel major version! 674 linux_latest = packages.linux_6_7; 675 linux_mptcp = throw "'linux_mptcp' has been moved to https://github.com/teto/mptcp-flake";
··· 669 }); 670 671 packageAliases = { 672 + linux_default = packages.linux_6_6; 673 # Update this when adding the newest kernel major version! 674 linux_latest = packages.linux_6_7; 675 linux_mptcp = throw "'linux_mptcp' has been moved to https://github.com/teto/mptcp-flake";
+2
pkgs/top-level/python-packages.nix
··· 3554 3555 e3-core = callPackage ../development/python-modules/e3-core { }; 3556 3557 eagle100 = callPackage ../development/python-modules/eagle100 { }; 3558 3559 easydict = callPackage ../development/python-modules/easydict { };
··· 3554 3555 e3-core = callPackage ../development/python-modules/e3-core { }; 3556 3557 + e3-testsuite = callPackage ../development/python-modules/e3-testsuite { }; 3558 + 3559 eagle100 = callPackage ../development/python-modules/eagle100 { }; 3560 3561 easydict = callPackage ../development/python-modules/easydict { };