lol

butterfly: 2.2.3 -> 2.2.4 (#382377)

authored by

Sandro and committed by
GitHub
0e1b2ec4 0b664362

+172 -2094
+54 -3
pkgs/by-name/bu/butterfly/package.nix
··· 2 2 lib, 3 3 fetchFromGitHub, 4 4 flutter327, 5 + runCommand, 6 + butterfly, 7 + yq, 8 + _experimental-update-script-combinators, 9 + gitUpdater, 10 + pdfium-binaries, 11 + stdenv, 12 + replaceVars, 5 13 }: 14 + 6 15 flutter327.buildFlutterApplication rec { 7 16 pname = "butterfly"; 8 - version = "2.2.3"; 17 + version = "2.2.4"; 9 18 10 19 src = fetchFromGitHub { 11 20 owner = "LinwoodDev"; 12 21 repo = "Butterfly"; 13 22 tag = "v${version}"; 14 - hash = "sha256-sAgCP31Qd9XKTOvVLTazx3fqKF/FAd9WEwfcmgVqD38="; 23 + hash = "sha256-lf1CCpLd7eM4iJvTsR2AI6xGCQ2NJ1mlYkR0hW03SRA="; 15 24 }; 16 25 17 26 pubspecLock = lib.importJSON ./pubspec.lock.json; 18 27 19 28 sourceRoot = "${src.name}/app"; 20 29 30 + customSourceBuilders = { 31 + # unofficial printing 32 + printing = 33 + { version, src, ... }: 34 + stdenv.mkDerivation rec { 35 + pname = "printing"; 36 + inherit version src; 37 + inherit (src) passthru; 38 + 39 + patches = [ 40 + (replaceVars ./printing.patch { 41 + inherit pdfium-binaries; 42 + }) 43 + ]; 44 + 45 + dontBuild = true; 46 + 47 + installPhase = '' 48 + runHook preInstall 49 + 50 + cp -r . $out 51 + 52 + runHook postInstall 53 + ''; 54 + }; 55 + }; 56 + 21 57 gitHashes = { 22 58 dart_leap = "sha256-eEyUqdVToybQoDwdmz47H0f3/5zRdJzmPv1d/5mTOgA="; 23 59 lw_file_system = "sha256-0LLSADBWq19liQLtJIJEuTEqmeyIWP61zRRjjpdV6SM="; ··· 31 67 pdf = "sha256-cIBSgePv5LIFRbc7IIx1fSVJceGEmzdZzDkOiD1z92E="; 32 68 pdf_widget_wrapper = "sha256-hXDFdgyu2DvIqwVBvk6TVDW+FdlMGAn5v5JZKQwp8fA="; 33 69 reorderable_grid = "sha256-g30DSPL/gsk0r8c2ecoKU4f1P3BF15zLnBVO6RXvDGQ="; 70 + printing = "sha256-0JdMld1TN2EtJVQSuYdSIfi/q96roVUJEAY8dWK9xCM="; 34 71 }; 35 72 36 73 postInstall = '' 37 74 cp -r linux/debian/usr/share $out/share 38 75 ''; 39 76 40 - passthru.updateScript = ./update.sh; 77 + passthru = { 78 + pubspecSource = 79 + runCommand "pubspec.lock.json" 80 + { 81 + buildInputs = [ yq ]; 82 + inherit (butterfly) src; 83 + } 84 + '' 85 + cat $src/app/pubspec.lock | yq > $out 86 + ''; 87 + updateScript = _experimental-update-script-combinators.sequence [ 88 + (gitUpdater { rev-prefix = "v"; }) 89 + (_experimental-update-script-combinators.copyAttrOutputToFile "butterfly.pubspecSource" ./pubspec.lock.json) 90 + ]; 91 + }; 41 92 42 93 meta = { 43 94 description = "Powerful, minimalistic, cross-platform, opensource note-taking app";
+45
pkgs/by-name/bu/butterfly/printing.patch
··· 1 + --- old/printing/linux/CMakeLists.txt 2024-07-16 18:45:19.000000000 +0800 2 + +++ new/printing/linux/CMakeLists.txt 2024-10-01 01:49:05.544910894 +0800 3 + @@ -16,6 +16,7 @@ 4 + set(PROJECT_NAME "printing") 5 + project(${PROJECT_NAME} LANGUAGES CXX) 6 + 7 + +set(PDFIUM_DIR @pdfium-binaries@) 8 + set(PDFIUM_VERSION "5200" CACHE STRING "Version of pdfium used") 9 + string(REPLACE "linux-" "" TARGET_ARCH ${FLUTTER_TARGET_PLATFORM}) 10 + set(PDFIUM_ARCH ${TARGET_ARCH} CACHE STRING "Architecture of pdfium used") 11 + @@ -32,18 +33,11 @@ 12 + ) 13 + endif() 14 + 15 + -# Download pdfium 16 + -include(../windows/DownloadProject.cmake) 17 + -download_project(PROJ 18 + - pdfium 19 + - URL 20 + - ${PDFIUM_URL}) 21 + - 22 + # This value is used when generating builds using this plugin, so it must not be 23 + # changed 24 + set(PLUGIN_NAME "printing_plugin") 25 + 26 + -include(${pdfium_SOURCE_DIR}/PDFiumConfig.cmake) 27 + +include(${PDFIUM_DIR}/PDFiumConfig.cmake) 28 + 29 + # System-level dependencies. 30 + find_package(PkgConfig REQUIRED) 31 + @@ -67,7 +61,7 @@ 32 + target_link_libraries(${PLUGIN_NAME} 33 + PRIVATE PkgConfig::GTK PkgConfig::GTKUnixPrint) 34 + target_link_libraries(${PLUGIN_NAME} PRIVATE pdfium) 35 + -get_filename_component(PDFium_lib_path "${PDFium_LIBRARY}" DIRECTORY) 36 + +set(PDFium_lib_path "${PDFIUM_DIR}/lib") 37 + set_target_properties(${PLUGIN_NAME} 38 + PROPERTIES SKIP_BUILD_RPATH 39 + FALSE 40 + @@ -77,4 +71,4 @@ 41 + "$ORIGIN:${PDFium_lib_path}") 42 + 43 + # List of absolute paths to libraries that should be bundled with the plugin 44 + -set(printing_bundled_libraries "${PDFium_LIBRARY}" PARENT_SCOPE) 45 + +set(printing_bundled_libraries "${PDFIUM_DIR}/lib/libpdfium.so" PARENT_SCOPE)
+67 -66
pkgs/by-name/bu/butterfly/pubspec.lock.json
··· 4 4 "dependency": "transitive", 5 5 "description": { 6 6 "name": "_fe_analyzer_shared", 7 - "sha256": "16e298750b6d0af7ce8a3ba7c18c69c3785d11b15ec83f6dcd0ad2a0009b3cab", 7 + "sha256": "88399e291da5f7e889359681a8f64b18c5123e03576b01f32a6a276611e511c3", 8 8 "url": "https://pub.dev" 9 9 }, 10 10 "source": "hosted", 11 - "version": "76.0.0" 11 + "version": "78.0.0" 12 12 }, 13 13 "_macros": { 14 14 "dependency": "transitive", ··· 20 20 "dependency": "transitive", 21 21 "description": { 22 22 "name": "analyzer", 23 - "sha256": "1f14db053a8c23e260789e9b0980fa27f2680dd640932cae5e1137cce0e46e1e", 23 + "sha256": "62899ef43d0b962b056ed2ebac6b47ec76ffd003d5f7c4e4dc870afe63188e33", 24 24 "url": "https://pub.dev" 25 25 }, 26 26 "source": "hosted", 27 - "version": "6.11.0" 27 + "version": "7.1.0" 28 28 }, 29 29 "animations": { 30 30 "dependency": "direct main", ··· 203 203 "relative": true 204 204 }, 205 205 "source": "path", 206 - "version": "2.2.3" 206 + "version": "2.2.4" 207 207 }, 208 208 "camera": { 209 209 "dependency": "direct main", ··· 219 219 "dependency": "transitive", 220 220 "description": { 221 221 "name": "camera_android_camerax", 222 - "sha256": "abcfa1ac32bd03116b4cfda7e8223ab391f01966e65823c064afe388550d1b3d", 222 + "sha256": "ecadc214daed34d8503540525d26577731c066f1993c254aa5272da7629e8f10", 223 223 "url": "https://pub.dev" 224 224 }, 225 225 "source": "hosted", 226 - "version": "0.6.10+3" 226 + "version": "0.6.12" 227 227 }, 228 228 "camera_avfoundation": { 229 229 "dependency": "transitive", 230 230 "description": { 231 231 "name": "camera_avfoundation", 232 - "sha256": "2e4c568f70e406ccb87376bc06b53d2f5bebaab71e2fbcc1a950e31449381bcf", 232 + "sha256": "c3038e6e72e284b14ad246a419f26908c08f8886d114cb8a2e351988439bfa68", 233 233 "url": "https://pub.dev" 234 234 }, 235 235 "source": "hosted", 236 - "version": "0.9.17+5" 236 + "version": "0.9.17+6" 237 237 }, 238 238 "camera_platform_interface": { 239 239 "dependency": "transitive", 240 240 "description": { 241 241 "name": "camera_platform_interface", 242 - "sha256": "b3ede1f171532e0d83111fe0980b46d17f1aa9788a07a2fbed07366bbdbb9061", 242 + "sha256": "953e7baed3a7c8fae92f7200afeb2be503ff1a17c3b4e4ed7b76f008c2810a31", 243 243 "url": "https://pub.dev" 244 244 }, 245 245 "source": "hosted", 246 - "version": "2.8.0" 246 + "version": "2.9.0" 247 247 }, 248 248 "camera_web": { 249 249 "dependency": "transitive", ··· 390 390 "dependency": "transitive", 391 391 "description": { 392 392 "name": "dart_style", 393 - "sha256": "7856d364b589d1f08986e140938578ed36ed948581fbc3bc9aef1805039ac5ab", 393 + "sha256": "27eb0ae77836989a3bc541ce55595e8ceee0992807f14511552a898ddd0d88ac", 394 394 "url": "https://pub.dev" 395 395 }, 396 396 "source": "hosted", 397 - "version": "2.3.7" 397 + "version": "3.0.1" 398 398 }, 399 399 "dbus": { 400 400 "dependency": "transitive", ··· 570 570 "dependency": "direct main", 571 571 "description": { 572 572 "name": "flex_color_scheme", 573 - "sha256": "90f4fe67b9561ae8a4af117df65a8ce9988624025667c54e6d304e65cff77d52", 573 + "sha256": "09bea5d776f694c5a67f2229f2aa500cc7cce369322dc6500ab01cf9ad1b4e1a", 574 574 "url": "https://pub.dev" 575 575 }, 576 576 "source": "hosted", 577 - "version": "8.0.2" 577 + "version": "8.1.0" 578 578 }, 579 579 "flex_seed_scheme": { 580 580 "dependency": "transitive", 581 581 "description": { 582 582 "name": "flex_seed_scheme", 583 - "sha256": "7639d2c86268eff84a909026eb169f008064af0fb3696a651b24b0fa24a40334", 583 + "sha256": "d3ba3c5c92d2d79d45e94b4c6c71d01fac3c15017da1545880c53864da5dfeb0", 584 584 "url": "https://pub.dev" 585 585 }, 586 586 "source": "hosted", 587 - "version": "3.4.1" 587 + "version": "3.5.0" 588 588 }, 589 589 "flutter": { 590 590 "dependency": "direct main", ··· 648 648 "dependency": "direct main", 649 649 "description": { 650 650 "name": "flutter_secure_storage", 651 - "sha256": "165164745e6afb5c0e3e3fcc72a012fb9e58496fb26ffb92cf22e16a821e85d0", 651 + "sha256": "9cad52d75ebc511adfae3d447d5d13da15a55a92c9410e50f67335b6d21d16ea", 652 652 "url": "https://pub.dev" 653 653 }, 654 654 "source": "hosted", 655 - "version": "9.2.2" 655 + "version": "9.2.4" 656 656 }, 657 657 "flutter_secure_storage_linux": { 658 658 "dependency": "transitive", 659 659 "description": { 660 660 "name": "flutter_secure_storage_linux", 661 - "sha256": "4d91bfc23047422cbcd73ac684bc169859ee766482517c22172c86596bf1464b", 661 + "sha256": "bf7404619d7ab5c0a1151d7c4e802edad8f33535abfbeff2f9e1fe1274e2d705", 662 662 "url": "https://pub.dev" 663 663 }, 664 664 "source": "hosted", 665 - "version": "1.2.1" 665 + "version": "1.2.2" 666 666 }, 667 667 "flutter_secure_storage_macos": { 668 668 "dependency": "transitive", 669 669 "description": { 670 670 "name": "flutter_secure_storage_macos", 671 - "sha256": "1693ab11121a5f925bbea0be725abfcfbbcf36c1e29e571f84a0c0f436147a81", 671 + "sha256": "6c0a2795a2d1de26ae202a0d78527d163f4acbb11cde4c75c670f3a0fc064247", 672 672 "url": "https://pub.dev" 673 673 }, 674 674 "source": "hosted", 675 - "version": "3.1.2" 675 + "version": "3.1.3" 676 676 }, 677 677 "flutter_secure_storage_platform_interface": { 678 678 "dependency": "transitive", ··· 709 709 "dependency": "direct main", 710 710 "description": { 711 711 "name": "flutter_svg", 712 - "sha256": "54900a1a1243f3c4a5506d853a2b5c2dbc38d5f27e52a52618a8054401431123", 712 + "sha256": "c200fd79c918a40c5cd50ea0877fa13f81bdaf6f0a5d3dbcc2a13e3285d6aa1b", 713 713 "url": "https://pub.dev" 714 714 }, 715 715 "source": "hosted", 716 - "version": "2.0.16" 716 + "version": "2.0.17" 717 717 }, 718 718 "flutter_test": { 719 719 "dependency": "direct dev", ··· 731 731 "dependency": "direct dev", 732 732 "description": { 733 733 "name": "freezed", 734 - "sha256": "44c19278dd9d89292cf46e97dc0c1e52ce03275f40a97c5a348e802a924bf40e", 734 + "sha256": "59a584c24b3acdc5250bb856d0d3e9c0b798ed14a4af1ddb7dc1c7b41df91c9c", 735 735 "url": "https://pub.dev" 736 736 }, 737 737 "source": "hosted", 738 - "version": "2.5.7" 738 + "version": "2.5.8" 739 739 }, 740 740 "freezed_annotation": { 741 741 "dependency": "transitive", ··· 777 777 "dependency": "direct main", 778 778 "description": { 779 779 "name": "go_router", 780 - "sha256": "2fd11229f59e23e967b0775df8d5948a519cd7e1e8b6e849729e010587b46539", 780 + "sha256": "7c2d40b59890a929824f30d442e810116caf5088482629c894b9e4478c67472d", 781 781 "url": "https://pub.dev" 782 782 }, 783 783 "source": "hosted", 784 - "version": "14.6.2" 784 + "version": "14.6.3" 785 785 }, 786 786 "graphs": { 787 787 "dependency": "transitive", ··· 817 817 "dependency": "transitive", 818 818 "description": { 819 819 "name": "http_parser", 820 - "sha256": "76d306a1c3afb33fe82e2bbacad62a61f409b5634c915fceb0d799de1a913360", 820 + "sha256": "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571", 821 821 "url": "https://pub.dev" 822 822 }, 823 823 "source": "hosted", 824 - "version": "4.1.1" 824 + "version": "4.1.2" 825 825 }, 826 826 "idb_shim": { 827 827 "dependency": "direct main", ··· 913 913 "dependency": "direct dev", 914 914 "description": { 915 915 "name": "json_serializable", 916 - "sha256": "c2fcb3920cf2b6ae6845954186420fca40bc0a8abcc84903b7801f17d7050d7c", 916 + "sha256": "8f52361c07497a7f2c16c13aac159f9be6fb12b1d67719eac98a21d9a205d571", 917 917 "url": "https://pub.dev" 918 918 }, 919 919 "source": "hosted", 920 - "version": "6.9.0" 920 + "version": "6.9.2" 921 921 }, 922 922 "leak_tracker": { 923 923 "dependency": "transitive", ··· 973 973 "dependency": "direct main", 974 974 "description": { 975 975 "path": "packages/lw_file_system", 976 - "ref": "f29b1ae0e338ec155e1c5b0a204c399232904540", 977 - "resolved-ref": "f29b1ae0e338ec155e1c5b0a204c399232904540", 976 + "ref": "54f7ac141410938babff9539dca190f5d130a0db", 977 + "resolved-ref": "54f7ac141410938babff9539dca190f5d130a0db", 978 978 "url": "https://github.com/LinwoodDev/dart_pkgs" 979 979 }, 980 980 "source": "git", ··· 984 984 "dependency": "transitive", 985 985 "description": { 986 986 "path": "packages/lw_file_system_api", 987 - "ref": "b9d6c6173bf75247ce5a4d47fab0e48b730a9696", 988 - "resolved-ref": "b9d6c6173bf75247ce5a4d47fab0e48b730a9696", 987 + "ref": "5ab1b96bea6ef0e0c07629ff4e7152b4437cf8ee", 988 + "resolved-ref": "5ab1b96bea6ef0e0c07629ff4e7152b4437cf8ee", 989 989 "url": "https://github.com/LinwoodDev/dart_pkgs" 990 990 }, 991 991 "source": "git", ··· 1016 1016 "dependency": "direct main", 1017 1017 "description": { 1018 1018 "name": "markdown", 1019 - "sha256": "ef2a1298144e3f985cc736b22e0ccdaf188b5b3970648f2d9dc13efd1d9df051", 1019 + "sha256": "935e23e1ff3bc02d390bad4d4be001208ee92cc217cb5b5a6c19bc14aaa318c1", 1020 1020 "url": "https://pub.dev" 1021 1021 }, 1022 1022 "source": "hosted", 1023 - "version": "7.2.2" 1023 + "version": "7.3.0" 1024 1024 }, 1025 1025 "matcher": { 1026 1026 "dependency": "transitive", ··· 1351 1351 "printing": { 1352 1352 "dependency": "direct main", 1353 1353 "description": { 1354 - "name": "printing", 1355 - "sha256": "b535d177fc6e8f8908e19b0ff5c1d4a87e3c4d0bf675e05aa2562af1b7853906", 1356 - "url": "https://pub.dev" 1354 + "path": "printing", 1355 + "ref": "4147fe72fcba3b271da02971171ff1ef71f3a7f7", 1356 + "resolved-ref": "4147fe72fcba3b271da02971171ff1ef71f3a7f7", 1357 + "url": "https://github.com/CodeDoctorDE/dart_pdf.git" 1357 1358 }, 1358 - "source": "hosted", 1359 - "version": "5.13.4" 1359 + "source": "git", 1360 + "version": "5.14.0" 1360 1361 }, 1361 1362 "process": { 1362 1363 "dependency": "transitive", ··· 1392 1393 "dependency": "transitive", 1393 1394 "description": { 1394 1395 "name": "pubspec_parse", 1395 - "sha256": "81876843eb50dc2e1e5b151792c9a985c5ed2536914115ed04e9c8528f6647b0", 1396 + "sha256": "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082", 1396 1397 "url": "https://pub.dev" 1397 1398 }, 1398 1399 "source": "hosted", 1399 - "version": "1.4.0" 1400 + "version": "1.5.0" 1400 1401 }, 1401 1402 "qr": { 1402 1403 "dependency": "transitive", ··· 1493 1494 "dependency": "transitive", 1494 1495 "description": { 1495 1496 "name": "sembast", 1496 - "sha256": "f45edc5e34ed53d6e3d70df664b182e9abcf9c784f48184e5be4c079d2b865d6", 1497 + "sha256": "b3dde17154b2233d039fe3c386871d2ccddb4f31e058502c4036b03858e2ff5f", 1497 1498 "url": "https://pub.dev" 1498 1499 }, 1499 1500 "source": "hosted", 1500 - "version": "3.8.0+1" 1501 + "version": "3.8.1+1" 1501 1502 }, 1502 1503 "share_plus": { 1503 1504 "dependency": "direct main", ··· 1523 1524 "dependency": "direct main", 1524 1525 "description": { 1525 1526 "name": "shared_preferences", 1526 - "sha256": "3c7e73920c694a436afaf65ab60ce3453d91f84208d761fbd83fc21182134d93", 1527 + "sha256": "a752ce92ea7540fc35a0d19722816e04d0e72828a4200e83a98cf1a1eb524c9a", 1527 1528 "url": "https://pub.dev" 1528 1529 }, 1529 1530 "source": "hosted", 1530 - "version": "2.3.4" 1531 + "version": "2.3.5" 1531 1532 }, 1532 1533 "shared_preferences_android": { 1533 1534 "dependency": "transitive", 1534 1535 "description": { 1535 1536 "name": "shared_preferences_android", 1536 - "sha256": "02a7d8a9ef346c9af715811b01fbd8e27845ad2c41148eefd31321471b41863d", 1537 + "sha256": "bf808be89fe9dc467475e982c1db6c2faf3d2acf54d526cd5ec37d86c99dbd84", 1537 1538 "url": "https://pub.dev" 1538 1539 }, 1539 1540 "source": "hosted", 1540 - "version": "2.4.0" 1541 + "version": "2.4.1" 1541 1542 }, 1542 1543 "shared_preferences_foundation": { 1543 1544 "dependency": "transitive", ··· 1619 1620 "dependency": "transitive", 1620 1621 "description": { 1621 1622 "name": "source_gen", 1622 - "sha256": "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832", 1623 + "sha256": "35c8150ece9e8c8d263337a265153c3329667640850b9304861faea59fc98f6b", 1623 1624 "url": "https://pub.dev" 1624 1625 }, 1625 1626 "source": "hosted", 1626 - "version": "1.5.0" 1627 + "version": "2.0.0" 1627 1628 }, 1628 1629 "source_helper": { 1629 1630 "dependency": "transitive", ··· 1699 1700 "dependency": "direct main", 1700 1701 "description": { 1701 1702 "name": "super_clipboard", 1702 - "sha256": "687ef5d4ceb2cb1e0e36a4af37683936609f424f0767b46fee5fc312b0aeb595", 1703 + "sha256": "5203c881d24033c3e6154c2ae01afd94e7f0a3201280373f28e540f1defa3f40", 1703 1704 "url": "https://pub.dev" 1704 1705 }, 1705 1706 "source": "hosted", 1706 - "version": "0.9.0-dev.5" 1707 + "version": "0.9.0-dev.6" 1707 1708 }, 1708 1709 "super_native_extensions": { 1709 1710 "dependency": "transitive", 1710 1711 "description": { 1711 1712 "name": "super_native_extensions", 1712 - "sha256": "1cb6baecf529300ae7f59974bdc33a53b947ecc4ce374c00126df064c10e4e51", 1713 + "sha256": "09ccc40c475e6f91770eaeb2553bf4803812d7beadc3759aa57d643370619c86", 1713 1714 "url": "https://pub.dev" 1714 1715 }, 1715 1716 "source": "hosted", 1716 - "version": "0.9.0-dev.5" 1717 + "version": "0.9.0-dev.6" 1717 1718 }, 1718 1719 "sync_http": { 1719 1720 "dependency": "transitive", ··· 1849 1850 "dependency": "transitive", 1850 1851 "description": { 1851 1852 "name": "url_launcher_web", 1852 - "sha256": "772638d3b34c779ede05ba3d38af34657a05ac55b06279ea6edd409e323dca8e", 1853 + "sha256": "3ba963161bd0fe395917ba881d320b9c4f6dd3c4a233da62ab18a5025c85f1e9", 1853 1854 "url": "https://pub.dev" 1854 1855 }, 1855 1856 "source": "hosted", 1856 - "version": "2.3.3" 1857 + "version": "2.4.0" 1857 1858 }, 1858 1859 "url_launcher_windows": { 1859 1860 "dependency": "transitive", 1860 1861 "description": { 1861 1862 "name": "url_launcher_windows", 1862 - "sha256": "44cf3aabcedde30f2dba119a9dea3b0f2672fbe6fa96e85536251d678216b3c4", 1863 + "sha256": "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77", 1863 1864 "url": "https://pub.dev" 1864 1865 }, 1865 1866 "source": "hosted", 1866 - "version": "3.1.3" 1867 + "version": "3.1.4" 1867 1868 }, 1868 1869 "uuid": { 1869 1870 "dependency": "transitive", ··· 1889 1890 "dependency": "transitive", 1890 1891 "description": { 1891 1892 "name": "vector_graphics_codec", 1892 - "sha256": "2430b973a4ca3c4dbc9999b62b8c719a160100dcbae5c819bae0cacce32c9cdb", 1893 + "sha256": "99fd9fbd34d9f9a32efd7b6a6aae14125d8237b10403b422a6a6dfeac2806146", 1893 1894 "url": "https://pub.dev" 1894 1895 }, 1895 1896 "source": "hosted", 1896 - "version": "1.1.12" 1897 + "version": "1.1.13" 1897 1898 }, 1898 1899 "vector_graphics_compiler": { 1899 1900 "dependency": "transitive", ··· 1979 1980 "dependency": "transitive", 1980 1981 "description": { 1981 1982 "name": "win32", 1982 - "sha256": "8b338d4486ab3fbc0ba0db9f9b4f5239b6697fcee427939a40e720cbb9ee0a69", 1983 + "sha256": "154360849a56b7b67331c21f09a386562d88903f90a1099c5987afc1912e1f29", 1983 1984 "url": "https://pub.dev" 1984 1985 }, 1985 1986 "source": "hosted", 1986 - "version": "5.9.0" 1987 + "version": "5.10.0" 1987 1988 }, 1988 1989 "win32_registry": { 1989 1990 "dependency": "transitive",
-20
pkgs/by-name/bu/butterfly/update.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -I nixpkgs=./. -i bash -p curl jq yq nix bash coreutils nix-update 3 - 4 - set -eou pipefail 5 - 6 - ROOT="$(dirname "$(readlink -f "$0")")" 7 - 8 - latestTag=$(curl ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} -sL https://api.github.com/repos/LinwoodDev/Butterfly/releases/latest | jq --raw-output .tag_name) 9 - latestVersion=$(echo "$latestTag" | sed 's/^v//') 10 - 11 - currentVersion=$(nix-instantiate --eval -E "with import ./. {}; butterfly.version or (lib.getVersion butterfly)" | tr -d '"') 12 - 13 - if [[ "$currentVersion" == "$latestVersion" ]]; then 14 - echo "package is up-to-date: $currentVersion" 15 - exit 0 16 - fi 17 - 18 - nix-update butterfly 19 - 20 - curl https://raw.githubusercontent.com/LinwoodDev/Butterfly/${latestTag}/app/pubspec.lock | yq . >$ROOT/pubspec.lock.json
-1996
pkgs/development/compilers/dart/package-source-builders/super_native_extensions/Cargo-0.8.22.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 = "aho-corasick" 7 - version = "1.1.3" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 10 - dependencies = [ 11 - "memchr", 12 - ] 13 - 14 - [[package]] 15 - name = "android_log-sys" 16 - version = "0.2.0" 17 - source = "registry+https://github.com/rust-lang/crates.io-index" 18 - checksum = "85965b6739a430150bdd138e2374a98af0c3ee0d030b3bb7fc3bddff58d0102e" 19 - 20 - [[package]] 21 - name = "android_logger" 22 - version = "0.11.3" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "8619b80c242aa7bd638b5c7ddd952addeecb71f69c75e33f1d47b2804f8f883a" 25 - dependencies = [ 26 - "android_log-sys", 27 - "env_logger", 28 - "log", 29 - "once_cell", 30 - ] 31 - 32 - [[package]] 33 - name = "anyhow" 34 - version = "1.0.86" 35 - source = "registry+https://github.com/rust-lang/crates.io-index" 36 - checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 37 - 38 - [[package]] 39 - name = "async-trait" 40 - version = "0.1.80" 41 - source = "registry+https://github.com/rust-lang/crates.io-index" 42 - checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" 43 - dependencies = [ 44 - "proc-macro2", 45 - "quote", 46 - "syn 2.0.65", 47 - ] 48 - 49 - [[package]] 50 - name = "atk" 51 - version = "0.17.1" 52 - source = "registry+https://github.com/rust-lang/crates.io-index" 53 - checksum = "6ba16453d10c712284061a05f6510f75abeb92b56ba88dfeb48c74775020cc22" 54 - dependencies = [ 55 - "atk-sys", 56 - "bitflags 1.3.2", 57 - "glib", 58 - "libc", 59 - ] 60 - 61 - [[package]] 62 - name = "atk-sys" 63 - version = "0.17.0" 64 - source = "registry+https://github.com/rust-lang/crates.io-index" 65 - checksum = "e3bf0a7ca572fbd5762fd8f8cd65a581e06767bc1234913fe1f43e370cff6e90" 66 - dependencies = [ 67 - "glib-sys", 68 - "gobject-sys", 69 - "libc", 70 - "system-deps", 71 - ] 72 - 73 - [[package]] 74 - name = "atty" 75 - version = "0.2.14" 76 - source = "registry+https://github.com/rust-lang/crates.io-index" 77 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 78 - dependencies = [ 79 - "hermit-abi 0.1.19", 80 - "libc", 81 - "winapi", 82 - ] 83 - 84 - [[package]] 85 - name = "autocfg" 86 - version = "1.3.0" 87 - source = "registry+https://github.com/rust-lang/crates.io-index" 88 - checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 89 - 90 - [[package]] 91 - name = "bitflags" 92 - version = "1.3.2" 93 - source = "registry+https://github.com/rust-lang/crates.io-index" 94 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 95 - 96 - [[package]] 97 - name = "bitflags" 98 - version = "2.5.0" 99 - source = "registry+https://github.com/rust-lang/crates.io-index" 100 - checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 101 - 102 - [[package]] 103 - name = "block-sys" 104 - version = "0.2.1" 105 - source = "registry+https://github.com/rust-lang/crates.io-index" 106 - checksum = "ae85a0696e7ea3b835a453750bf002770776609115e6d25c6d2ff28a8200f7e7" 107 - dependencies = [ 108 - "objc-sys", 109 - ] 110 - 111 - [[package]] 112 - name = "block2" 113 - version = "0.4.0" 114 - source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "e58aa60e59d8dbfcc36138f5f18be5f24394d33b38b24f7fd0b1caa33095f22f" 116 - dependencies = [ 117 - "block-sys", 118 - "objc2", 119 - ] 120 - 121 - [[package]] 122 - name = "block2" 123 - version = "0.5.1" 124 - source = "registry+https://github.com/rust-lang/crates.io-index" 125 - checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" 126 - dependencies = [ 127 - "objc2", 128 - ] 129 - 130 - [[package]] 131 - name = "byte-slice-cast" 132 - version = "1.2.2" 133 - source = "registry+https://github.com/rust-lang/crates.io-index" 134 - checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" 135 - 136 - [[package]] 137 - name = "bytes" 138 - version = "1.6.0" 139 - source = "registry+https://github.com/rust-lang/crates.io-index" 140 - checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 141 - 142 - [[package]] 143 - name = "cairo-rs" 144 - version = "0.17.10" 145 - source = "registry+https://github.com/rust-lang/crates.io-index" 146 - checksum = "ab3603c4028a5e368d09b51c8b624b9a46edcd7c3778284077a6125af73c9f0a" 147 - dependencies = [ 148 - "bitflags 1.3.2", 149 - "cairo-sys-rs", 150 - "glib", 151 - "libc", 152 - "once_cell", 153 - "thiserror", 154 - ] 155 - 156 - [[package]] 157 - name = "cairo-sys-rs" 158 - version = "0.17.10" 159 - source = "registry+https://github.com/rust-lang/crates.io-index" 160 - checksum = "691d0c66b1fb4881be80a760cb8fe76ea97218312f9dfe2c9cc0f496ca279cb1" 161 - dependencies = [ 162 - "glib-sys", 163 - "libc", 164 - "system-deps", 165 - ] 166 - 167 - [[package]] 168 - name = "cc" 169 - version = "1.0.98" 170 - source = "registry+https://github.com/rust-lang/crates.io-index" 171 - checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f" 172 - 173 - [[package]] 174 - name = "cesu8" 175 - version = "1.1.0" 176 - source = "registry+https://github.com/rust-lang/crates.io-index" 177 - checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 178 - 179 - [[package]] 180 - name = "cfg-expr" 181 - version = "0.15.8" 182 - source = "registry+https://github.com/rust-lang/crates.io-index" 183 - checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" 184 - dependencies = [ 185 - "smallvec", 186 - "target-lexicon", 187 - ] 188 - 189 - [[package]] 190 - name = "cfg-if" 191 - version = "1.0.0" 192 - source = "registry+https://github.com/rust-lang/crates.io-index" 193 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 194 - 195 - [[package]] 196 - name = "colored" 197 - version = "2.1.0" 198 - source = "registry+https://github.com/rust-lang/crates.io-index" 199 - checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8" 200 - dependencies = [ 201 - "lazy_static", 202 - "windows-sys 0.48.0", 203 - ] 204 - 205 - [[package]] 206 - name = "combine" 207 - version = "4.6.7" 208 - source = "registry+https://github.com/rust-lang/crates.io-index" 209 - checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 210 - dependencies = [ 211 - "bytes", 212 - "memchr", 213 - ] 214 - 215 - [[package]] 216 - name = "core-foundation" 217 - version = "0.9.4" 218 - source = "registry+https://github.com/rust-lang/crates.io-index" 219 - checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 220 - dependencies = [ 221 - "core-foundation-sys", 222 - "libc", 223 - ] 224 - 225 - [[package]] 226 - name = "core-foundation-sys" 227 - version = "0.8.6" 228 - source = "registry+https://github.com/rust-lang/crates.io-index" 229 - checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 230 - 231 - [[package]] 232 - name = "core-graphics" 233 - version = "0.22.3" 234 - source = "registry+https://github.com/rust-lang/crates.io-index" 235 - checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" 236 - dependencies = [ 237 - "bitflags 1.3.2", 238 - "core-foundation", 239 - "core-graphics-types", 240 - "foreign-types", 241 - "libc", 242 - ] 243 - 244 - [[package]] 245 - name = "core-graphics-types" 246 - version = "0.1.3" 247 - source = "registry+https://github.com/rust-lang/crates.io-index" 248 - checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf" 249 - dependencies = [ 250 - "bitflags 1.3.2", 251 - "core-foundation", 252 - "libc", 253 - ] 254 - 255 - [[package]] 256 - name = "dashmap" 257 - version = "5.5.3" 258 - source = "registry+https://github.com/rust-lang/crates.io-index" 259 - checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 260 - dependencies = [ 261 - "cfg-if", 262 - "hashbrown", 263 - "lock_api", 264 - "once_cell", 265 - "parking_lot_core", 266 - ] 267 - 268 - [[package]] 269 - name = "deranged" 270 - version = "0.3.11" 271 - source = "registry+https://github.com/rust-lang/crates.io-index" 272 - checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 273 - dependencies = [ 274 - "powerfmt", 275 - ] 276 - 277 - [[package]] 278 - name = "dispatch" 279 - version = "0.2.0" 280 - source = "registry+https://github.com/rust-lang/crates.io-index" 281 - checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 282 - 283 - [[package]] 284 - name = "env_logger" 285 - version = "0.10.2" 286 - source = "registry+https://github.com/rust-lang/crates.io-index" 287 - checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" 288 - dependencies = [ 289 - "log", 290 - "regex", 291 - ] 292 - 293 - [[package]] 294 - name = "equivalent" 295 - version = "1.0.1" 296 - source = "registry+https://github.com/rust-lang/crates.io-index" 297 - checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 298 - 299 - [[package]] 300 - name = "field-offset" 301 - version = "0.3.6" 302 - source = "registry+https://github.com/rust-lang/crates.io-index" 303 - checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 304 - dependencies = [ 305 - "memoffset", 306 - "rustc_version", 307 - ] 308 - 309 - [[package]] 310 - name = "foreign-types" 311 - version = "0.3.2" 312 - source = "registry+https://github.com/rust-lang/crates.io-index" 313 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 314 - dependencies = [ 315 - "foreign-types-shared", 316 - ] 317 - 318 - [[package]] 319 - name = "foreign-types-shared" 320 - version = "0.1.1" 321 - source = "registry+https://github.com/rust-lang/crates.io-index" 322 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 323 - 324 - [[package]] 325 - name = "form_urlencoded" 326 - version = "1.2.1" 327 - source = "registry+https://github.com/rust-lang/crates.io-index" 328 - checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 329 - dependencies = [ 330 - "percent-encoding", 331 - ] 332 - 333 - [[package]] 334 - name = "futures" 335 - version = "0.3.30" 336 - source = "registry+https://github.com/rust-lang/crates.io-index" 337 - checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 338 - dependencies = [ 339 - "futures-channel", 340 - "futures-core", 341 - "futures-io", 342 - "futures-sink", 343 - "futures-task", 344 - "futures-util", 345 - ] 346 - 347 - [[package]] 348 - name = "futures-channel" 349 - version = "0.3.30" 350 - source = "registry+https://github.com/rust-lang/crates.io-index" 351 - checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 352 - dependencies = [ 353 - "futures-core", 354 - "futures-sink", 355 - ] 356 - 357 - [[package]] 358 - name = "futures-core" 359 - version = "0.3.30" 360 - source = "registry+https://github.com/rust-lang/crates.io-index" 361 - checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 362 - 363 - [[package]] 364 - name = "futures-executor" 365 - version = "0.3.30" 366 - source = "registry+https://github.com/rust-lang/crates.io-index" 367 - checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 368 - dependencies = [ 369 - "futures-core", 370 - "futures-task", 371 - "futures-util", 372 - ] 373 - 374 - [[package]] 375 - name = "futures-io" 376 - version = "0.3.30" 377 - source = "registry+https://github.com/rust-lang/crates.io-index" 378 - checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 379 - 380 - [[package]] 381 - name = "futures-macro" 382 - version = "0.3.30" 383 - source = "registry+https://github.com/rust-lang/crates.io-index" 384 - checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 385 - dependencies = [ 386 - "proc-macro2", 387 - "quote", 388 - "syn 2.0.65", 389 - ] 390 - 391 - [[package]] 392 - name = "futures-sink" 393 - version = "0.3.30" 394 - source = "registry+https://github.com/rust-lang/crates.io-index" 395 - checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 396 - 397 - [[package]] 398 - name = "futures-task" 399 - version = "0.3.30" 400 - source = "registry+https://github.com/rust-lang/crates.io-index" 401 - checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 402 - 403 - [[package]] 404 - name = "futures-util" 405 - version = "0.3.30" 406 - source = "registry+https://github.com/rust-lang/crates.io-index" 407 - checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 408 - dependencies = [ 409 - "futures-channel", 410 - "futures-core", 411 - "futures-io", 412 - "futures-macro", 413 - "futures-sink", 414 - "futures-task", 415 - "memchr", 416 - "pin-project-lite", 417 - "pin-utils", 418 - "slab", 419 - ] 420 - 421 - [[package]] 422 - name = "gdk" 423 - version = "0.17.1" 424 - source = "registry+https://github.com/rust-lang/crates.io-index" 425 - checksum = "be1df5ea52cccd7e3a0897338b5564968274b52f5fd12601e0afa44f454c74d3" 426 - dependencies = [ 427 - "bitflags 1.3.2", 428 - "cairo-rs", 429 - "gdk-pixbuf", 430 - "gdk-sys", 431 - "gio", 432 - "glib", 433 - "libc", 434 - "pango", 435 - ] 436 - 437 - [[package]] 438 - name = "gdk-pixbuf" 439 - version = "0.17.10" 440 - source = "registry+https://github.com/rust-lang/crates.io-index" 441 - checksum = "695d6bc846438c5708b07007537b9274d883373dd30858ca881d7d71b5540717" 442 - dependencies = [ 443 - "bitflags 1.3.2", 444 - "gdk-pixbuf-sys", 445 - "gio", 446 - "glib", 447 - "libc", 448 - "once_cell", 449 - ] 450 - 451 - [[package]] 452 - name = "gdk-pixbuf-sys" 453 - version = "0.17.10" 454 - source = "registry+https://github.com/rust-lang/crates.io-index" 455 - checksum = "9285ec3c113c66d7d0ab5676599176f1f42f4944ca1b581852215bf5694870cb" 456 - dependencies = [ 457 - "gio-sys", 458 - "glib-sys", 459 - "gobject-sys", 460 - "libc", 461 - "system-deps", 462 - ] 463 - 464 - [[package]] 465 - name = "gdk-sys" 466 - version = "0.17.0" 467 - source = "registry+https://github.com/rust-lang/crates.io-index" 468 - checksum = "2152de9d38bc67a17b3fe49dc0823af5bf874df59ea088c5f28f31cf103de703" 469 - dependencies = [ 470 - "cairo-sys-rs", 471 - "gdk-pixbuf-sys", 472 - "gio-sys", 473 - "glib-sys", 474 - "gobject-sys", 475 - "libc", 476 - "pango-sys", 477 - "pkg-config", 478 - "system-deps", 479 - ] 480 - 481 - [[package]] 482 - name = "getrandom" 483 - version = "0.2.15" 484 - source = "registry+https://github.com/rust-lang/crates.io-index" 485 - checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 486 - dependencies = [ 487 - "cfg-if", 488 - "libc", 489 - "wasi", 490 - ] 491 - 492 - [[package]] 493 - name = "gio" 494 - version = "0.17.10" 495 - source = "registry+https://github.com/rust-lang/crates.io-index" 496 - checksum = "a6973e92937cf98689b6a054a9e56c657ed4ff76de925e36fc331a15f0c5d30a" 497 - dependencies = [ 498 - "bitflags 1.3.2", 499 - "futures-channel", 500 - "futures-core", 501 - "futures-io", 502 - "futures-util", 503 - "gio-sys", 504 - "glib", 505 - "libc", 506 - "once_cell", 507 - "pin-project-lite", 508 - "smallvec", 509 - "thiserror", 510 - ] 511 - 512 - [[package]] 513 - name = "gio-sys" 514 - version = "0.17.10" 515 - source = "registry+https://github.com/rust-lang/crates.io-index" 516 - checksum = "0ccf87c30a12c469b6d958950f6a9c09f2be20b7773f7e70d20b867fdf2628c3" 517 - dependencies = [ 518 - "glib-sys", 519 - "gobject-sys", 520 - "libc", 521 - "system-deps", 522 - "winapi", 523 - ] 524 - 525 - [[package]] 526 - name = "glib" 527 - version = "0.17.10" 528 - source = "registry+https://github.com/rust-lang/crates.io-index" 529 - checksum = "d3fad45ba8d4d2cea612b432717e834f48031cd8853c8aaf43b2c79fec8d144b" 530 - dependencies = [ 531 - "bitflags 1.3.2", 532 - "futures-channel", 533 - "futures-core", 534 - "futures-executor", 535 - "futures-task", 536 - "futures-util", 537 - "gio-sys", 538 - "glib-macros", 539 - "glib-sys", 540 - "gobject-sys", 541 - "libc", 542 - "memchr", 543 - "once_cell", 544 - "smallvec", 545 - "thiserror", 546 - ] 547 - 548 - [[package]] 549 - name = "glib-macros" 550 - version = "0.17.10" 551 - source = "registry+https://github.com/rust-lang/crates.io-index" 552 - checksum = "eca5c79337338391f1ab8058d6698125034ce8ef31b72a442437fa6c8580de26" 553 - dependencies = [ 554 - "anyhow", 555 - "heck 0.4.1", 556 - "proc-macro-crate", 557 - "proc-macro-error", 558 - "proc-macro2", 559 - "quote", 560 - "syn 1.0.109", 561 - ] 562 - 563 - [[package]] 564 - name = "glib-sys" 565 - version = "0.17.10" 566 - source = "registry+https://github.com/rust-lang/crates.io-index" 567 - checksum = "d80aa6ea7bba0baac79222204aa786a6293078c210abe69ef1336911d4bdc4f0" 568 - dependencies = [ 569 - "libc", 570 - "system-deps", 571 - ] 572 - 573 - [[package]] 574 - name = "gobject-sys" 575 - version = "0.17.10" 576 - source = "registry+https://github.com/rust-lang/crates.io-index" 577 - checksum = "cd34c3317740a6358ec04572c1bcfd3ac0b5b6529275fae255b237b314bb8062" 578 - dependencies = [ 579 - "glib-sys", 580 - "libc", 581 - "system-deps", 582 - ] 583 - 584 - [[package]] 585 - name = "gtk" 586 - version = "0.17.1" 587 - source = "registry+https://github.com/rust-lang/crates.io-index" 588 - checksum = "b6c4222ab92b08d4d0bab90ddb6185b4e575ceeea8b8cdf00b938d7b6661d966" 589 - dependencies = [ 590 - "atk", 591 - "bitflags 1.3.2", 592 - "cairo-rs", 593 - "field-offset", 594 - "futures-channel", 595 - "gdk", 596 - "gdk-pixbuf", 597 - "gio", 598 - "glib", 599 - "gtk-sys", 600 - "gtk3-macros", 601 - "libc", 602 - "once_cell", 603 - "pango", 604 - "pkg-config", 605 - ] 606 - 607 - [[package]] 608 - name = "gtk-sys" 609 - version = "0.17.0" 610 - source = "registry+https://github.com/rust-lang/crates.io-index" 611 - checksum = "4d8eb6a4b93e5a7e6980f7348d08c1cd93d31fae07cf97f20678c5ec41de3d7e" 612 - dependencies = [ 613 - "atk-sys", 614 - "cairo-sys-rs", 615 - "gdk-pixbuf-sys", 616 - "gdk-sys", 617 - "gio-sys", 618 - "glib-sys", 619 - "gobject-sys", 620 - "libc", 621 - "pango-sys", 622 - "system-deps", 623 - ] 624 - 625 - [[package]] 626 - name = "gtk3-macros" 627 - version = "0.17.1" 628 - source = "registry+https://github.com/rust-lang/crates.io-index" 629 - checksum = "3efb84d682c9a39c10bd9f24f5a4b9c15cc8c7edc45c19cb2ca2c4fc38b2d95e" 630 - dependencies = [ 631 - "anyhow", 632 - "proc-macro-crate", 633 - "proc-macro-error", 634 - "proc-macro2", 635 - "quote", 636 - "syn 1.0.109", 637 - ] 638 - 639 - [[package]] 640 - name = "hashbrown" 641 - version = "0.14.5" 642 - source = "registry+https://github.com/rust-lang/crates.io-index" 643 - checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 644 - 645 - [[package]] 646 - name = "heck" 647 - version = "0.4.1" 648 - source = "registry+https://github.com/rust-lang/crates.io-index" 649 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 650 - 651 - [[package]] 652 - name = "heck" 653 - version = "0.5.0" 654 - source = "registry+https://github.com/rust-lang/crates.io-index" 655 - checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 656 - 657 - [[package]] 658 - name = "hermit-abi" 659 - version = "0.1.19" 660 - source = "registry+https://github.com/rust-lang/crates.io-index" 661 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 662 - dependencies = [ 663 - "libc", 664 - ] 665 - 666 - [[package]] 667 - name = "hermit-abi" 668 - version = "0.3.9" 669 - source = "registry+https://github.com/rust-lang/crates.io-index" 670 - checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 671 - 672 - [[package]] 673 - name = "icrate" 674 - version = "0.1.2" 675 - source = "registry+https://github.com/rust-lang/crates.io-index" 676 - checksum = "3fb69199826926eb864697bddd27f73d9fddcffc004f5733131e15b465e30642" 677 - dependencies = [ 678 - "block2 0.4.0", 679 - "objc2", 680 - ] 681 - 682 - [[package]] 683 - name = "idna" 684 - version = "0.5.0" 685 - source = "registry+https://github.com/rust-lang/crates.io-index" 686 - checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 687 - dependencies = [ 688 - "unicode-bidi", 689 - "unicode-normalization", 690 - ] 691 - 692 - [[package]] 693 - name = "indexmap" 694 - version = "2.2.6" 695 - source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 697 - dependencies = [ 698 - "equivalent", 699 - "hashbrown", 700 - ] 701 - 702 - [[package]] 703 - name = "irondash_dart_ffi" 704 - version = "0.2.0" 705 - source = "registry+https://github.com/rust-lang/crates.io-index" 706 - checksum = "88ed3ea8413fd024d89154472f7aea14e820eb600d0c4318bc001b14dd9b3ddc" 707 - dependencies = [ 708 - "once_cell", 709 - ] 710 - 711 - [[package]] 712 - name = "irondash_engine_context" 713 - version = "0.5.0" 714 - source = "registry+https://github.com/rust-lang/crates.io-index" 715 - checksum = "00cff90901a70987a221ba78a2d7439e5add4d34c534be60a33ab6f65b0741ae" 716 - dependencies = [ 717 - "android_logger", 718 - "core-foundation", 719 - "icrate", 720 - "jni", 721 - "log", 722 - "objc2", 723 - "once_cell", 724 - ] 725 - 726 - [[package]] 727 - name = "irondash_message_channel" 728 - version = "0.7.0" 729 - source = "registry+https://github.com/rust-lang/crates.io-index" 730 - checksum = "335cbcc1e4d341bf132b7b26823a03c9520fa0007a83d27f7cfbd535e616b91b" 731 - dependencies = [ 732 - "async-trait", 733 - "core-foundation", 734 - "icrate", 735 - "irondash_dart_ffi", 736 - "irondash_message_channel_derive", 737 - "irondash_run_loop", 738 - "log", 739 - "objc2", 740 - "once_cell", 741 - ] 742 - 743 - [[package]] 744 - name = "irondash_message_channel_derive" 745 - version = "0.1.1" 746 - source = "registry+https://github.com/rust-lang/crates.io-index" 747 - checksum = "3cc040dca601ea6a092d0c936dbe362863580c3537e4748ca6c17cbaf88cb0b7" 748 - dependencies = [ 749 - "proc-macro-error", 750 - "proc-macro2", 751 - "quote", 752 - "syn 1.0.109", 753 - ] 754 - 755 - [[package]] 756 - name = "irondash_run_loop" 757 - version = "0.5.0" 758 - source = "registry+https://github.com/rust-lang/crates.io-index" 759 - checksum = "b669550085d7f2ecad1811118b36f57224dd83fddbc97da17009f429d637239d" 760 - dependencies = [ 761 - "core-foundation", 762 - "futures", 763 - "icrate", 764 - "irondash_engine_context", 765 - "log", 766 - "objc2", 767 - "once_cell", 768 - ] 769 - 770 - [[package]] 771 - name = "itoa" 772 - version = "1.0.11" 773 - source = "registry+https://github.com/rust-lang/crates.io-index" 774 - checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 775 - 776 - [[package]] 777 - name = "jni" 778 - version = "0.21.1" 779 - source = "registry+https://github.com/rust-lang/crates.io-index" 780 - checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 781 - dependencies = [ 782 - "cesu8", 783 - "cfg-if", 784 - "combine", 785 - "jni-sys", 786 - "log", 787 - "thiserror", 788 - "walkdir", 789 - "windows-sys 0.45.0", 790 - ] 791 - 792 - [[package]] 793 - name = "jni-sys" 794 - version = "0.3.0" 795 - source = "registry+https://github.com/rust-lang/crates.io-index" 796 - checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" 797 - 798 - [[package]] 799 - name = "lazy_static" 800 - version = "1.4.0" 801 - source = "registry+https://github.com/rust-lang/crates.io-index" 802 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 803 - 804 - [[package]] 805 - name = "libc" 806 - version = "0.2.155" 807 - source = "registry+https://github.com/rust-lang/crates.io-index" 808 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 809 - 810 - [[package]] 811 - name = "lock_api" 812 - version = "0.4.12" 813 - source = "registry+https://github.com/rust-lang/crates.io-index" 814 - checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 815 - dependencies = [ 816 - "autocfg", 817 - "scopeguard", 818 - ] 819 - 820 - [[package]] 821 - name = "log" 822 - version = "0.4.21" 823 - source = "registry+https://github.com/rust-lang/crates.io-index" 824 - checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 825 - 826 - [[package]] 827 - name = "memchr" 828 - version = "2.7.2" 829 - source = "registry+https://github.com/rust-lang/crates.io-index" 830 - checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 831 - 832 - [[package]] 833 - name = "memoffset" 834 - version = "0.9.1" 835 - source = "registry+https://github.com/rust-lang/crates.io-index" 836 - checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 837 - dependencies = [ 838 - "autocfg", 839 - ] 840 - 841 - [[package]] 842 - name = "mime" 843 - version = "0.3.17" 844 - source = "registry+https://github.com/rust-lang/crates.io-index" 845 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 846 - 847 - [[package]] 848 - name = "mime_guess" 849 - version = "2.0.4" 850 - source = "git+https://github.com/knopp/mime_guess.git?branch=super_native_extensions#8c9abd38a5845db2d8a91a02fee16b226c364874" 851 - dependencies = [ 852 - "mime", 853 - "unicase", 854 - ] 855 - 856 - [[package]] 857 - name = "num-conv" 858 - version = "0.1.0" 859 - source = "registry+https://github.com/rust-lang/crates.io-index" 860 - checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 861 - 862 - [[package]] 863 - name = "num_cpus" 864 - version = "1.16.0" 865 - source = "registry+https://github.com/rust-lang/crates.io-index" 866 - checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 867 - dependencies = [ 868 - "hermit-abi 0.3.9", 869 - "libc", 870 - ] 871 - 872 - [[package]] 873 - name = "num_threads" 874 - version = "0.1.7" 875 - source = "registry+https://github.com/rust-lang/crates.io-index" 876 - checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" 877 - dependencies = [ 878 - "libc", 879 - ] 880 - 881 - [[package]] 882 - name = "objc-sys" 883 - version = "0.3.5" 884 - source = "registry+https://github.com/rust-lang/crates.io-index" 885 - checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" 886 - 887 - [[package]] 888 - name = "objc2" 889 - version = "0.5.2" 890 - source = "registry+https://github.com/rust-lang/crates.io-index" 891 - checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" 892 - dependencies = [ 893 - "objc-sys", 894 - "objc2-encode", 895 - ] 896 - 897 - [[package]] 898 - name = "objc2-app-kit" 899 - version = "0.2.2" 900 - source = "registry+https://github.com/rust-lang/crates.io-index" 901 - checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff" 902 - dependencies = [ 903 - "bitflags 2.5.0", 904 - "block2 0.5.1", 905 - "libc", 906 - "objc2", 907 - "objc2-core-data", 908 - "objc2-core-image", 909 - "objc2-foundation", 910 - "objc2-quartz-core", 911 - ] 912 - 913 - [[package]] 914 - name = "objc2-cloud-kit" 915 - version = "0.2.2" 916 - source = "registry+https://github.com/rust-lang/crates.io-index" 917 - checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009" 918 - dependencies = [ 919 - "bitflags 2.5.0", 920 - "block2 0.5.1", 921 - "objc2", 922 - "objc2-core-location", 923 - "objc2-foundation", 924 - ] 925 - 926 - [[package]] 927 - name = "objc2-contacts" 928 - version = "0.2.2" 929 - source = "registry+https://github.com/rust-lang/crates.io-index" 930 - checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889" 931 - dependencies = [ 932 - "block2 0.5.1", 933 - "objc2", 934 - "objc2-foundation", 935 - ] 936 - 937 - [[package]] 938 - name = "objc2-core-data" 939 - version = "0.2.2" 940 - source = "registry+https://github.com/rust-lang/crates.io-index" 941 - checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef" 942 - dependencies = [ 943 - "bitflags 2.5.0", 944 - "block2 0.5.1", 945 - "objc2", 946 - "objc2-foundation", 947 - ] 948 - 949 - [[package]] 950 - name = "objc2-core-image" 951 - version = "0.2.2" 952 - source = "registry+https://github.com/rust-lang/crates.io-index" 953 - checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80" 954 - dependencies = [ 955 - "block2 0.5.1", 956 - "objc2", 957 - "objc2-foundation", 958 - "objc2-metal", 959 - ] 960 - 961 - [[package]] 962 - name = "objc2-core-location" 963 - version = "0.2.2" 964 - source = "registry+https://github.com/rust-lang/crates.io-index" 965 - checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781" 966 - dependencies = [ 967 - "block2 0.5.1", 968 - "objc2", 969 - "objc2-contacts", 970 - "objc2-foundation", 971 - ] 972 - 973 - [[package]] 974 - name = "objc2-encode" 975 - version = "4.0.3" 976 - source = "registry+https://github.com/rust-lang/crates.io-index" 977 - checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8" 978 - 979 - [[package]] 980 - name = "objc2-foundation" 981 - version = "0.2.2" 982 - source = "registry+https://github.com/rust-lang/crates.io-index" 983 - checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" 984 - dependencies = [ 985 - "bitflags 2.5.0", 986 - "block2 0.5.1", 987 - "dispatch", 988 - "libc", 989 - "objc2", 990 - ] 991 - 992 - [[package]] 993 - name = "objc2-link-presentation" 994 - version = "0.2.2" 995 - source = "registry+https://github.com/rust-lang/crates.io-index" 996 - checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398" 997 - dependencies = [ 998 - "block2 0.5.1", 999 - "objc2", 1000 - "objc2-app-kit", 1001 - "objc2-foundation", 1002 - ] 1003 - 1004 - [[package]] 1005 - name = "objc2-metal" 1006 - version = "0.2.2" 1007 - source = "registry+https://github.com/rust-lang/crates.io-index" 1008 - checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" 1009 - dependencies = [ 1010 - "bitflags 2.5.0", 1011 - "block2 0.5.1", 1012 - "objc2", 1013 - "objc2-foundation", 1014 - ] 1015 - 1016 - [[package]] 1017 - name = "objc2-quartz-core" 1018 - version = "0.2.2" 1019 - source = "registry+https://github.com/rust-lang/crates.io-index" 1020 - checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" 1021 - dependencies = [ 1022 - "bitflags 2.5.0", 1023 - "block2 0.5.1", 1024 - "objc2", 1025 - "objc2-foundation", 1026 - "objc2-metal", 1027 - ] 1028 - 1029 - [[package]] 1030 - name = "objc2-symbols" 1031 - version = "0.2.2" 1032 - source = "registry+https://github.com/rust-lang/crates.io-index" 1033 - checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc" 1034 - dependencies = [ 1035 - "objc2", 1036 - "objc2-foundation", 1037 - ] 1038 - 1039 - [[package]] 1040 - name = "objc2-ui-kit" 1041 - version = "0.2.2" 1042 - source = "registry+https://github.com/rust-lang/crates.io-index" 1043 - checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f" 1044 - dependencies = [ 1045 - "bitflags 2.5.0", 1046 - "block2 0.5.1", 1047 - "objc2", 1048 - "objc2-cloud-kit", 1049 - "objc2-core-data", 1050 - "objc2-core-image", 1051 - "objc2-core-location", 1052 - "objc2-foundation", 1053 - "objc2-link-presentation", 1054 - "objc2-quartz-core", 1055 - "objc2-symbols", 1056 - "objc2-uniform-type-identifiers", 1057 - "objc2-user-notifications", 1058 - ] 1059 - 1060 - [[package]] 1061 - name = "objc2-uniform-type-identifiers" 1062 - version = "0.2.2" 1063 - source = "registry+https://github.com/rust-lang/crates.io-index" 1064 - checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe" 1065 - dependencies = [ 1066 - "block2 0.5.1", 1067 - "objc2", 1068 - "objc2-foundation", 1069 - ] 1070 - 1071 - [[package]] 1072 - name = "objc2-user-notifications" 1073 - version = "0.2.2" 1074 - source = "registry+https://github.com/rust-lang/crates.io-index" 1075 - checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3" 1076 - dependencies = [ 1077 - "bitflags 2.5.0", 1078 - "block2 0.5.1", 1079 - "objc2", 1080 - "objc2-core-location", 1081 - "objc2-foundation", 1082 - ] 1083 - 1084 - [[package]] 1085 - name = "once_cell" 1086 - version = "1.19.0" 1087 - source = "registry+https://github.com/rust-lang/crates.io-index" 1088 - checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1089 - 1090 - [[package]] 1091 - name = "oslog" 1092 - version = "0.2.0" 1093 - source = "registry+https://github.com/rust-lang/crates.io-index" 1094 - checksum = "80d2043d1f61d77cb2f4b1f7b7b2295f40507f5f8e9d1c8bf10a1ca5f97a3969" 1095 - dependencies = [ 1096 - "cc", 1097 - "dashmap", 1098 - "log", 1099 - ] 1100 - 1101 - [[package]] 1102 - name = "pango" 1103 - version = "0.17.10" 1104 - source = "registry+https://github.com/rust-lang/crates.io-index" 1105 - checksum = "35be456fc620e61f62dff7ff70fbd54dcbaf0a4b920c0f16de1107c47d921d48" 1106 - dependencies = [ 1107 - "bitflags 1.3.2", 1108 - "gio", 1109 - "glib", 1110 - "libc", 1111 - "once_cell", 1112 - "pango-sys", 1113 - ] 1114 - 1115 - [[package]] 1116 - name = "pango-sys" 1117 - version = "0.17.10" 1118 - source = "registry+https://github.com/rust-lang/crates.io-index" 1119 - checksum = "3da69f9f3850b0d8990d462f8c709561975e95f689c1cdf0fecdebde78b35195" 1120 - dependencies = [ 1121 - "glib-sys", 1122 - "gobject-sys", 1123 - "libc", 1124 - "system-deps", 1125 - ] 1126 - 1127 - [[package]] 1128 - name = "parking_lot_core" 1129 - version = "0.9.10" 1130 - source = "registry+https://github.com/rust-lang/crates.io-index" 1131 - checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 1132 - dependencies = [ 1133 - "cfg-if", 1134 - "libc", 1135 - "redox_syscall", 1136 - "smallvec", 1137 - "windows-targets 0.52.5", 1138 - ] 1139 - 1140 - [[package]] 1141 - name = "percent-encoding" 1142 - version = "2.3.1" 1143 - source = "registry+https://github.com/rust-lang/crates.io-index" 1144 - checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 1145 - 1146 - [[package]] 1147 - name = "pin-project-lite" 1148 - version = "0.2.14" 1149 - source = "registry+https://github.com/rust-lang/crates.io-index" 1150 - checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 1151 - 1152 - [[package]] 1153 - name = "pin-utils" 1154 - version = "0.1.0" 1155 - source = "registry+https://github.com/rust-lang/crates.io-index" 1156 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1157 - 1158 - [[package]] 1159 - name = "pkg-config" 1160 - version = "0.3.30" 1161 - source = "registry+https://github.com/rust-lang/crates.io-index" 1162 - checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 1163 - 1164 - [[package]] 1165 - name = "powerfmt" 1166 - version = "0.2.0" 1167 - source = "registry+https://github.com/rust-lang/crates.io-index" 1168 - checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1169 - 1170 - [[package]] 1171 - name = "ppv-lite86" 1172 - version = "0.2.17" 1173 - source = "registry+https://github.com/rust-lang/crates.io-index" 1174 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1175 - 1176 - [[package]] 1177 - name = "proc-macro-crate" 1178 - version = "1.3.1" 1179 - source = "registry+https://github.com/rust-lang/crates.io-index" 1180 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 1181 - dependencies = [ 1182 - "once_cell", 1183 - "toml_edit 0.19.15", 1184 - ] 1185 - 1186 - [[package]] 1187 - name = "proc-macro-error" 1188 - version = "1.0.4" 1189 - source = "registry+https://github.com/rust-lang/crates.io-index" 1190 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 1191 - dependencies = [ 1192 - "proc-macro-error-attr", 1193 - "proc-macro2", 1194 - "quote", 1195 - "syn 1.0.109", 1196 - "version_check", 1197 - ] 1198 - 1199 - [[package]] 1200 - name = "proc-macro-error-attr" 1201 - version = "1.0.4" 1202 - source = "registry+https://github.com/rust-lang/crates.io-index" 1203 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 1204 - dependencies = [ 1205 - "proc-macro2", 1206 - "quote", 1207 - "version_check", 1208 - ] 1209 - 1210 - [[package]] 1211 - name = "proc-macro2" 1212 - version = "1.0.83" 1213 - source = "registry+https://github.com/rust-lang/crates.io-index" 1214 - checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43" 1215 - dependencies = [ 1216 - "unicode-ident", 1217 - ] 1218 - 1219 - [[package]] 1220 - name = "quote" 1221 - version = "1.0.36" 1222 - source = "registry+https://github.com/rust-lang/crates.io-index" 1223 - checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 1224 - dependencies = [ 1225 - "proc-macro2", 1226 - ] 1227 - 1228 - [[package]] 1229 - name = "rand" 1230 - version = "0.8.5" 1231 - source = "registry+https://github.com/rust-lang/crates.io-index" 1232 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1233 - dependencies = [ 1234 - "libc", 1235 - "rand_chacha", 1236 - "rand_core", 1237 - ] 1238 - 1239 - [[package]] 1240 - name = "rand_chacha" 1241 - version = "0.3.1" 1242 - source = "registry+https://github.com/rust-lang/crates.io-index" 1243 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1244 - dependencies = [ 1245 - "ppv-lite86", 1246 - "rand_core", 1247 - ] 1248 - 1249 - [[package]] 1250 - name = "rand_core" 1251 - version = "0.6.4" 1252 - source = "registry+https://github.com/rust-lang/crates.io-index" 1253 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1254 - dependencies = [ 1255 - "getrandom", 1256 - ] 1257 - 1258 - [[package]] 1259 - name = "redox_syscall" 1260 - version = "0.5.1" 1261 - source = "registry+https://github.com/rust-lang/crates.io-index" 1262 - checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 1263 - dependencies = [ 1264 - "bitflags 2.5.0", 1265 - ] 1266 - 1267 - [[package]] 1268 - name = "regex" 1269 - version = "1.10.4" 1270 - source = "registry+https://github.com/rust-lang/crates.io-index" 1271 - checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 1272 - dependencies = [ 1273 - "aho-corasick", 1274 - "memchr", 1275 - "regex-automata", 1276 - "regex-syntax", 1277 - ] 1278 - 1279 - [[package]] 1280 - name = "regex-automata" 1281 - version = "0.4.6" 1282 - source = "registry+https://github.com/rust-lang/crates.io-index" 1283 - checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" 1284 - dependencies = [ 1285 - "aho-corasick", 1286 - "memchr", 1287 - "regex-syntax", 1288 - ] 1289 - 1290 - [[package]] 1291 - name = "regex-syntax" 1292 - version = "0.8.3" 1293 - source = "registry+https://github.com/rust-lang/crates.io-index" 1294 - checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" 1295 - 1296 - [[package]] 1297 - name = "rustc_version" 1298 - version = "0.4.0" 1299 - source = "registry+https://github.com/rust-lang/crates.io-index" 1300 - checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1301 - dependencies = [ 1302 - "semver", 1303 - ] 1304 - 1305 - [[package]] 1306 - name = "ryu" 1307 - version = "1.0.18" 1308 - source = "registry+https://github.com/rust-lang/crates.io-index" 1309 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1310 - 1311 - [[package]] 1312 - name = "same-file" 1313 - version = "1.0.6" 1314 - source = "registry+https://github.com/rust-lang/crates.io-index" 1315 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1316 - dependencies = [ 1317 - "winapi-util", 1318 - ] 1319 - 1320 - [[package]] 1321 - name = "scopeguard" 1322 - version = "1.2.0" 1323 - source = "registry+https://github.com/rust-lang/crates.io-index" 1324 - checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1325 - 1326 - [[package]] 1327 - name = "semver" 1328 - version = "1.0.23" 1329 - source = "registry+https://github.com/rust-lang/crates.io-index" 1330 - checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 1331 - 1332 - [[package]] 1333 - name = "serde" 1334 - version = "1.0.202" 1335 - source = "registry+https://github.com/rust-lang/crates.io-index" 1336 - checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395" 1337 - dependencies = [ 1338 - "serde_derive", 1339 - ] 1340 - 1341 - [[package]] 1342 - name = "serde_derive" 1343 - version = "1.0.202" 1344 - source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838" 1346 - dependencies = [ 1347 - "proc-macro2", 1348 - "quote", 1349 - "syn 2.0.65", 1350 - ] 1351 - 1352 - [[package]] 1353 - name = "serde_json" 1354 - version = "1.0.117" 1355 - source = "registry+https://github.com/rust-lang/crates.io-index" 1356 - checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 1357 - dependencies = [ 1358 - "itoa", 1359 - "ryu", 1360 - "serde", 1361 - ] 1362 - 1363 - [[package]] 1364 - name = "serde_spanned" 1365 - version = "0.6.6" 1366 - source = "registry+https://github.com/rust-lang/crates.io-index" 1367 - checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0" 1368 - dependencies = [ 1369 - "serde", 1370 - ] 1371 - 1372 - [[package]] 1373 - name = "simple_logger" 1374 - version = "2.3.0" 1375 - source = "registry+https://github.com/rust-lang/crates.io-index" 1376 - checksum = "48047e77b528151aaf841a10a9025f9459da80ba820e425ff7eb005708a76dc7" 1377 - dependencies = [ 1378 - "atty", 1379 - "colored", 1380 - "log", 1381 - "time", 1382 - "winapi", 1383 - ] 1384 - 1385 - [[package]] 1386 - name = "slab" 1387 - version = "0.4.9" 1388 - source = "registry+https://github.com/rust-lang/crates.io-index" 1389 - checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1390 - dependencies = [ 1391 - "autocfg", 1392 - ] 1393 - 1394 - [[package]] 1395 - name = "smallvec" 1396 - version = "1.13.2" 1397 - source = "registry+https://github.com/rust-lang/crates.io-index" 1398 - checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1399 - 1400 - [[package]] 1401 - name = "super_native_extensions" 1402 - version = "0.1.0" 1403 - dependencies = [ 1404 - "android_logger", 1405 - "anyhow", 1406 - "async-trait", 1407 - "block2 0.5.1", 1408 - "byte-slice-cast", 1409 - "core-foundation", 1410 - "core-graphics", 1411 - "gdk", 1412 - "gdk-sys", 1413 - "glib-sys", 1414 - "gobject-sys", 1415 - "gtk", 1416 - "gtk-sys", 1417 - "irondash_engine_context", 1418 - "irondash_message_channel", 1419 - "irondash_run_loop", 1420 - "jni", 1421 - "log", 1422 - "mime_guess", 1423 - "objc2", 1424 - "objc2-app-kit", 1425 - "objc2-foundation", 1426 - "objc2-ui-kit", 1427 - "once_cell", 1428 - "oslog", 1429 - "rand", 1430 - "serde", 1431 - "serde_json", 1432 - "simple_logger", 1433 - "threadpool", 1434 - "url", 1435 - "velcro", 1436 - "windows", 1437 - ] 1438 - 1439 - [[package]] 1440 - name = "syn" 1441 - version = "1.0.109" 1442 - source = "registry+https://github.com/rust-lang/crates.io-index" 1443 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1444 - dependencies = [ 1445 - "proc-macro2", 1446 - "quote", 1447 - "unicode-ident", 1448 - ] 1449 - 1450 - [[package]] 1451 - name = "syn" 1452 - version = "2.0.65" 1453 - source = "registry+https://github.com/rust-lang/crates.io-index" 1454 - checksum = "d2863d96a84c6439701d7a38f9de935ec562c8832cc55d1dde0f513b52fad106" 1455 - dependencies = [ 1456 - "proc-macro2", 1457 - "quote", 1458 - "unicode-ident", 1459 - ] 1460 - 1461 - [[package]] 1462 - name = "system-deps" 1463 - version = "6.2.2" 1464 - source = "registry+https://github.com/rust-lang/crates.io-index" 1465 - checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" 1466 - dependencies = [ 1467 - "cfg-expr", 1468 - "heck 0.5.0", 1469 - "pkg-config", 1470 - "toml", 1471 - "version-compare", 1472 - ] 1473 - 1474 - [[package]] 1475 - name = "target-lexicon" 1476 - version = "0.12.14" 1477 - source = "registry+https://github.com/rust-lang/crates.io-index" 1478 - checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" 1479 - 1480 - [[package]] 1481 - name = "thiserror" 1482 - version = "1.0.61" 1483 - source = "registry+https://github.com/rust-lang/crates.io-index" 1484 - checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" 1485 - dependencies = [ 1486 - "thiserror-impl", 1487 - ] 1488 - 1489 - [[package]] 1490 - name = "thiserror-impl" 1491 - version = "1.0.61" 1492 - source = "registry+https://github.com/rust-lang/crates.io-index" 1493 - checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" 1494 - dependencies = [ 1495 - "proc-macro2", 1496 - "quote", 1497 - "syn 2.0.65", 1498 - ] 1499 - 1500 - [[package]] 1501 - name = "threadpool" 1502 - version = "1.8.1" 1503 - source = "registry+https://github.com/rust-lang/crates.io-index" 1504 - checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 1505 - dependencies = [ 1506 - "num_cpus", 1507 - ] 1508 - 1509 - [[package]] 1510 - name = "time" 1511 - version = "0.3.36" 1512 - source = "registry+https://github.com/rust-lang/crates.io-index" 1513 - checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 1514 - dependencies = [ 1515 - "deranged", 1516 - "itoa", 1517 - "libc", 1518 - "num-conv", 1519 - "num_threads", 1520 - "powerfmt", 1521 - "serde", 1522 - "time-core", 1523 - "time-macros", 1524 - ] 1525 - 1526 - [[package]] 1527 - name = "time-core" 1528 - version = "0.1.2" 1529 - source = "registry+https://github.com/rust-lang/crates.io-index" 1530 - checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1531 - 1532 - [[package]] 1533 - name = "time-macros" 1534 - version = "0.2.18" 1535 - source = "registry+https://github.com/rust-lang/crates.io-index" 1536 - checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 1537 - dependencies = [ 1538 - "num-conv", 1539 - "time-core", 1540 - ] 1541 - 1542 - [[package]] 1543 - name = "tinyvec" 1544 - version = "1.6.0" 1545 - source = "registry+https://github.com/rust-lang/crates.io-index" 1546 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1547 - dependencies = [ 1548 - "tinyvec_macros", 1549 - ] 1550 - 1551 - [[package]] 1552 - name = "tinyvec_macros" 1553 - version = "0.1.1" 1554 - source = "registry+https://github.com/rust-lang/crates.io-index" 1555 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1556 - 1557 - [[package]] 1558 - name = "toml" 1559 - version = "0.8.13" 1560 - source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba" 1562 - dependencies = [ 1563 - "serde", 1564 - "serde_spanned", 1565 - "toml_datetime", 1566 - "toml_edit 0.22.13", 1567 - ] 1568 - 1569 - [[package]] 1570 - name = "toml_datetime" 1571 - version = "0.6.6" 1572 - source = "registry+https://github.com/rust-lang/crates.io-index" 1573 - checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf" 1574 - dependencies = [ 1575 - "serde", 1576 - ] 1577 - 1578 - [[package]] 1579 - name = "toml_edit" 1580 - version = "0.19.15" 1581 - source = "registry+https://github.com/rust-lang/crates.io-index" 1582 - checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" 1583 - dependencies = [ 1584 - "indexmap", 1585 - "toml_datetime", 1586 - "winnow 0.5.40", 1587 - ] 1588 - 1589 - [[package]] 1590 - name = "toml_edit" 1591 - version = "0.22.13" 1592 - source = "registry+https://github.com/rust-lang/crates.io-index" 1593 - checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c" 1594 - dependencies = [ 1595 - "indexmap", 1596 - "serde", 1597 - "serde_spanned", 1598 - "toml_datetime", 1599 - "winnow 0.6.8", 1600 - ] 1601 - 1602 - [[package]] 1603 - name = "unicase" 1604 - version = "2.7.0" 1605 - source = "registry+https://github.com/rust-lang/crates.io-index" 1606 - checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 1607 - dependencies = [ 1608 - "version_check", 1609 - ] 1610 - 1611 - [[package]] 1612 - name = "unicode-bidi" 1613 - version = "0.3.15" 1614 - source = "registry+https://github.com/rust-lang/crates.io-index" 1615 - checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 1616 - 1617 - [[package]] 1618 - name = "unicode-ident" 1619 - version = "1.0.12" 1620 - source = "registry+https://github.com/rust-lang/crates.io-index" 1621 - checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1622 - 1623 - [[package]] 1624 - name = "unicode-normalization" 1625 - version = "0.1.23" 1626 - source = "registry+https://github.com/rust-lang/crates.io-index" 1627 - checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 1628 - dependencies = [ 1629 - "tinyvec", 1630 - ] 1631 - 1632 - [[package]] 1633 - name = "url" 1634 - version = "2.5.0" 1635 - source = "registry+https://github.com/rust-lang/crates.io-index" 1636 - checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 1637 - dependencies = [ 1638 - "form_urlencoded", 1639 - "idna", 1640 - "percent-encoding", 1641 - ] 1642 - 1643 - [[package]] 1644 - name = "velcro" 1645 - version = "0.5.4" 1646 - source = "registry+https://github.com/rust-lang/crates.io-index" 1647 - checksum = "31c6a51883ba1034757307e06dc4856cd5439ecf6804ce6c90d13d49496196fc" 1648 - dependencies = [ 1649 - "velcro_macros", 1650 - ] 1651 - 1652 - [[package]] 1653 - name = "velcro_core" 1654 - version = "0.5.4" 1655 - source = "registry+https://github.com/rust-lang/crates.io-index" 1656 - checksum = "742cf45d07989b7614877e083602a8973890c75a81f47216b238d2f326ec916c" 1657 - dependencies = [ 1658 - "proc-macro2", 1659 - "quote", 1660 - "syn 1.0.109", 1661 - ] 1662 - 1663 - [[package]] 1664 - name = "velcro_macros" 1665 - version = "0.5.4" 1666 - source = "registry+https://github.com/rust-lang/crates.io-index" 1667 - checksum = "7b23c806d7b49977e6e12ee6d120ac01dcab702b51c652fdf1a6709ab5b8868c" 1668 - dependencies = [ 1669 - "syn 1.0.109", 1670 - "velcro_core", 1671 - ] 1672 - 1673 - [[package]] 1674 - name = "version-compare" 1675 - version = "0.2.0" 1676 - source = "registry+https://github.com/rust-lang/crates.io-index" 1677 - checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" 1678 - 1679 - [[package]] 1680 - name = "version_check" 1681 - version = "0.9.4" 1682 - source = "registry+https://github.com/rust-lang/crates.io-index" 1683 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1684 - 1685 - [[package]] 1686 - name = "walkdir" 1687 - version = "2.5.0" 1688 - source = "registry+https://github.com/rust-lang/crates.io-index" 1689 - checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 1690 - dependencies = [ 1691 - "same-file", 1692 - "winapi-util", 1693 - ] 1694 - 1695 - [[package]] 1696 - name = "wasi" 1697 - version = "0.11.0+wasi-snapshot-preview1" 1698 - source = "registry+https://github.com/rust-lang/crates.io-index" 1699 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1700 - 1701 - [[package]] 1702 - name = "winapi" 1703 - version = "0.3.9" 1704 - source = "registry+https://github.com/rust-lang/crates.io-index" 1705 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1706 - dependencies = [ 1707 - "winapi-i686-pc-windows-gnu", 1708 - "winapi-x86_64-pc-windows-gnu", 1709 - ] 1710 - 1711 - [[package]] 1712 - name = "winapi-i686-pc-windows-gnu" 1713 - version = "0.4.0" 1714 - source = "registry+https://github.com/rust-lang/crates.io-index" 1715 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1716 - 1717 - [[package]] 1718 - name = "winapi-util" 1719 - version = "0.1.8" 1720 - source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 1722 - dependencies = [ 1723 - "windows-sys 0.52.0", 1724 - ] 1725 - 1726 - [[package]] 1727 - name = "winapi-x86_64-pc-windows-gnu" 1728 - version = "0.4.0" 1729 - source = "registry+https://github.com/rust-lang/crates.io-index" 1730 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1731 - 1732 - [[package]] 1733 - name = "windows" 1734 - version = "0.52.0" 1735 - source = "registry+https://github.com/rust-lang/crates.io-index" 1736 - checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 1737 - dependencies = [ 1738 - "windows-core", 1739 - "windows-implement", 1740 - "windows-interface", 1741 - "windows-targets 0.52.5", 1742 - ] 1743 - 1744 - [[package]] 1745 - name = "windows-core" 1746 - version = "0.52.0" 1747 - source = "registry+https://github.com/rust-lang/crates.io-index" 1748 - checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 1749 - dependencies = [ 1750 - "windows-targets 0.52.5", 1751 - ] 1752 - 1753 - [[package]] 1754 - name = "windows-implement" 1755 - version = "0.52.0" 1756 - source = "registry+https://github.com/rust-lang/crates.io-index" 1757 - checksum = "12168c33176773b86799be25e2a2ba07c7aab9968b37541f1094dbd7a60c8946" 1758 - dependencies = [ 1759 - "proc-macro2", 1760 - "quote", 1761 - "syn 2.0.65", 1762 - ] 1763 - 1764 - [[package]] 1765 - name = "windows-interface" 1766 - version = "0.52.0" 1767 - source = "registry+https://github.com/rust-lang/crates.io-index" 1768 - checksum = "9d8dc32e0095a7eeccebd0e3f09e9509365ecb3fc6ac4d6f5f14a3f6392942d1" 1769 - dependencies = [ 1770 - "proc-macro2", 1771 - "quote", 1772 - "syn 2.0.65", 1773 - ] 1774 - 1775 - [[package]] 1776 - name = "windows-sys" 1777 - version = "0.45.0" 1778 - source = "registry+https://github.com/rust-lang/crates.io-index" 1779 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 1780 - dependencies = [ 1781 - "windows-targets 0.42.2", 1782 - ] 1783 - 1784 - [[package]] 1785 - name = "windows-sys" 1786 - version = "0.48.0" 1787 - source = "registry+https://github.com/rust-lang/crates.io-index" 1788 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1789 - dependencies = [ 1790 - "windows-targets 0.48.5", 1791 - ] 1792 - 1793 - [[package]] 1794 - name = "windows-sys" 1795 - version = "0.52.0" 1796 - source = "registry+https://github.com/rust-lang/crates.io-index" 1797 - checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1798 - dependencies = [ 1799 - "windows-targets 0.52.5", 1800 - ] 1801 - 1802 - [[package]] 1803 - name = "windows-targets" 1804 - version = "0.42.2" 1805 - source = "registry+https://github.com/rust-lang/crates.io-index" 1806 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 1807 - dependencies = [ 1808 - "windows_aarch64_gnullvm 0.42.2", 1809 - "windows_aarch64_msvc 0.42.2", 1810 - "windows_i686_gnu 0.42.2", 1811 - "windows_i686_msvc 0.42.2", 1812 - "windows_x86_64_gnu 0.42.2", 1813 - "windows_x86_64_gnullvm 0.42.2", 1814 - "windows_x86_64_msvc 0.42.2", 1815 - ] 1816 - 1817 - [[package]] 1818 - name = "windows-targets" 1819 - version = "0.48.5" 1820 - source = "registry+https://github.com/rust-lang/crates.io-index" 1821 - checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1822 - dependencies = [ 1823 - "windows_aarch64_gnullvm 0.48.5", 1824 - "windows_aarch64_msvc 0.48.5", 1825 - "windows_i686_gnu 0.48.5", 1826 - "windows_i686_msvc 0.48.5", 1827 - "windows_x86_64_gnu 0.48.5", 1828 - "windows_x86_64_gnullvm 0.48.5", 1829 - "windows_x86_64_msvc 0.48.5", 1830 - ] 1831 - 1832 - [[package]] 1833 - name = "windows-targets" 1834 - version = "0.52.5" 1835 - source = "registry+https://github.com/rust-lang/crates.io-index" 1836 - checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 1837 - dependencies = [ 1838 - "windows_aarch64_gnullvm 0.52.5", 1839 - "windows_aarch64_msvc 0.52.5", 1840 - "windows_i686_gnu 0.52.5", 1841 - "windows_i686_gnullvm", 1842 - "windows_i686_msvc 0.52.5", 1843 - "windows_x86_64_gnu 0.52.5", 1844 - "windows_x86_64_gnullvm 0.52.5", 1845 - "windows_x86_64_msvc 0.52.5", 1846 - ] 1847 - 1848 - [[package]] 1849 - name = "windows_aarch64_gnullvm" 1850 - version = "0.42.2" 1851 - source = "registry+https://github.com/rust-lang/crates.io-index" 1852 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 1853 - 1854 - [[package]] 1855 - name = "windows_aarch64_gnullvm" 1856 - version = "0.48.5" 1857 - source = "registry+https://github.com/rust-lang/crates.io-index" 1858 - checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1859 - 1860 - [[package]] 1861 - name = "windows_aarch64_gnullvm" 1862 - version = "0.52.5" 1863 - source = "registry+https://github.com/rust-lang/crates.io-index" 1864 - checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 1865 - 1866 - [[package]] 1867 - name = "windows_aarch64_msvc" 1868 - version = "0.42.2" 1869 - source = "registry+https://github.com/rust-lang/crates.io-index" 1870 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 1871 - 1872 - [[package]] 1873 - name = "windows_aarch64_msvc" 1874 - version = "0.48.5" 1875 - source = "registry+https://github.com/rust-lang/crates.io-index" 1876 - checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1877 - 1878 - [[package]] 1879 - name = "windows_aarch64_msvc" 1880 - version = "0.52.5" 1881 - source = "registry+https://github.com/rust-lang/crates.io-index" 1882 - checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 1883 - 1884 - [[package]] 1885 - name = "windows_i686_gnu" 1886 - version = "0.42.2" 1887 - source = "registry+https://github.com/rust-lang/crates.io-index" 1888 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 1889 - 1890 - [[package]] 1891 - name = "windows_i686_gnu" 1892 - version = "0.48.5" 1893 - source = "registry+https://github.com/rust-lang/crates.io-index" 1894 - checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1895 - 1896 - [[package]] 1897 - name = "windows_i686_gnu" 1898 - version = "0.52.5" 1899 - source = "registry+https://github.com/rust-lang/crates.io-index" 1900 - checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 1901 - 1902 - [[package]] 1903 - name = "windows_i686_gnullvm" 1904 - version = "0.52.5" 1905 - source = "registry+https://github.com/rust-lang/crates.io-index" 1906 - checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 1907 - 1908 - [[package]] 1909 - name = "windows_i686_msvc" 1910 - version = "0.42.2" 1911 - source = "registry+https://github.com/rust-lang/crates.io-index" 1912 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 1913 - 1914 - [[package]] 1915 - name = "windows_i686_msvc" 1916 - version = "0.48.5" 1917 - source = "registry+https://github.com/rust-lang/crates.io-index" 1918 - checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1919 - 1920 - [[package]] 1921 - name = "windows_i686_msvc" 1922 - version = "0.52.5" 1923 - source = "registry+https://github.com/rust-lang/crates.io-index" 1924 - checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 1925 - 1926 - [[package]] 1927 - name = "windows_x86_64_gnu" 1928 - version = "0.42.2" 1929 - source = "registry+https://github.com/rust-lang/crates.io-index" 1930 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 1931 - 1932 - [[package]] 1933 - name = "windows_x86_64_gnu" 1934 - version = "0.48.5" 1935 - source = "registry+https://github.com/rust-lang/crates.io-index" 1936 - checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1937 - 1938 - [[package]] 1939 - name = "windows_x86_64_gnu" 1940 - version = "0.52.5" 1941 - source = "registry+https://github.com/rust-lang/crates.io-index" 1942 - checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 1943 - 1944 - [[package]] 1945 - name = "windows_x86_64_gnullvm" 1946 - version = "0.42.2" 1947 - source = "registry+https://github.com/rust-lang/crates.io-index" 1948 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 1949 - 1950 - [[package]] 1951 - name = "windows_x86_64_gnullvm" 1952 - version = "0.48.5" 1953 - source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1955 - 1956 - [[package]] 1957 - name = "windows_x86_64_gnullvm" 1958 - version = "0.52.5" 1959 - source = "registry+https://github.com/rust-lang/crates.io-index" 1960 - checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 1961 - 1962 - [[package]] 1963 - name = "windows_x86_64_msvc" 1964 - version = "0.42.2" 1965 - source = "registry+https://github.com/rust-lang/crates.io-index" 1966 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 1967 - 1968 - [[package]] 1969 - name = "windows_x86_64_msvc" 1970 - version = "0.48.5" 1971 - source = "registry+https://github.com/rust-lang/crates.io-index" 1972 - checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1973 - 1974 - [[package]] 1975 - name = "windows_x86_64_msvc" 1976 - version = "0.52.5" 1977 - source = "registry+https://github.com/rust-lang/crates.io-index" 1978 - checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 1979 - 1980 - [[package]] 1981 - name = "winnow" 1982 - version = "0.5.40" 1983 - source = "registry+https://github.com/rust-lang/crates.io-index" 1984 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 1985 - dependencies = [ 1986 - "memchr", 1987 - ] 1988 - 1989 - [[package]] 1990 - name = "winnow" 1991 - version = "0.6.8" 1992 - source = "registry+https://github.com/rust-lang/crates.io-index" 1993 - checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d" 1994 - dependencies = [ 1995 - "memchr", 1996 - ]
+6 -9
pkgs/development/compilers/dart/package-source-builders/super_native_extensions/default.nix
··· 19 19 20 20 sourceRoot = "${src.name}/rust"; 21 21 22 - cargoLock = 22 + useFetchCargoVendor = true; 23 + 24 + cargoHash = 23 25 rec { 24 - _0_8_22 = { 25 - lockFile = ./Cargo-0.8.22.lock; 26 - outputHashes = { 27 - "mime_guess-2.0.4" = "sha256-KSw0YUTGqNEWY9pMvQplUGajJgoP2BRwVX6qZPpB2rI="; 28 - }; 29 - }; 26 + _0_9_0-dev_6 = "sha256-1yJIbBxScmkCwy/e+/z2cYA8qQBfT0yoIBmOSPVd4h4="; 30 27 _0_9_0-dev_5 = _0_8_22; 31 28 _0_9_0-dev_3 = _0_8_22; 29 + _0_8_22 = "sha256-gYYoC3bGJrYY1uUHfqMv6pp4SK+P9fRoBsLtf34rsCg="; 32 30 _0_8_24 = _0_8_22; 33 31 _0_8_21 = _0_8_22; 34 32 _0_8_20 = _0_8_22; ··· 38 36 } 39 37 .${"_" + (lib.replaceStrings [ "." ] [ "_" ] version)} or (throw '' 40 38 Unsupported version of pub 'super_native_extensions': '${version}' 41 - Please add ${src}/rust/Cargo.lock 42 - to this path, and add corresponding entry here. If the lock 39 + Please add cargoHash to here. If the cargoHash 43 40 is the same with existing versions, add an alias here. 44 41 ''); 45 42