hiddify-app: drop (#435187)

authored by Weijia Wang and committed by GitHub 22a518ae 015a9c26

+1 -2683
-152
pkgs/by-name/hi/hiddify-app/package.nix
··· 1 - { 2 - lib, 3 - fetchFromGitHub, 4 - flutter324, 5 - buildGoModule, 6 - libayatana-appindicator, 7 - makeDesktopItem, 8 - copyDesktopItems, 9 - autoPatchelfHook, 10 - }: 11 - 12 - let 13 - metaCommon = { 14 - description = "Multi-platform auto-proxy client, supporting Sing-box, X-ray, TUIC, Hysteria, Reality, Trojan, SSH etc"; 15 - license = with lib.licenses; [ 16 - unfree # upstream adds non-free additional conditions. https://github.com/hiddify/hiddify-app/blob/0f6b15057f626016fcd7a0c075f1c8c2f606110a/LICENSE.md#additional-conditions-to-gpl-v3 17 - gpl3Only 18 - ]; 19 - maintainers = with lib.maintainers; [ ]; 20 - }; 21 - 22 - libcore = buildGoModule rec { 23 - pname = "hiddify-core"; 24 - version = "3.1.8"; 25 - 26 - src = fetchFromGitHub { 27 - owner = "hiddify"; 28 - repo = "hiddify-core"; 29 - tag = "v${version}"; 30 - hash = "sha256-NRzzkC3xbRVP20Pm29bHf8YpxmnjISgF46c8l9qU4rA="; 31 - }; 32 - 33 - vendorHash = "sha256-a7NFZt4/w2+oaZG3ncaOrrhASxUptcWS/TeaIQrgLe4="; 34 - 35 - GO_BUILD_FLAGS = '' 36 - -tags "with_gvisor,with_quic,with_wireguard,with_ech,with_utls,with_clash_api,with_grpc" \ 37 - -trimpath \ 38 - -ldflags "-s -w" \ 39 - ''; 40 - 41 - buildPhase = '' 42 - runHook preBuild 43 - 44 - go build ${GO_BUILD_FLAGS} -buildmode=c-shared -o bin/lib/libcore.so ./custom 45 - mkdir lib 46 - cp bin/lib/libcore.so ./lib/libcore.so 47 - CGO_LDFLAGS="./lib/libcore.so" go build ${GO_BUILD_FLAGS} -o bin/HiddifyCli ./cli/bydll 48 - 49 - runHook postBuild 50 - ''; 51 - 52 - installPhase = '' 53 - runHook preInstall 54 - 55 - install -Dm0755 bin/HiddifyCli $out/bin/HiddifyCli 56 - install -Dm0755 lib/libcore.so $out/lib/libcore.so 57 - 58 - runHook postInstall 59 - ''; 60 - 61 - meta = metaCommon // { 62 - homepage = "https://github.com/hiddify/hiddify-core"; 63 - mainProgram = "HiddifyCli"; 64 - }; 65 - }; 66 - in 67 - flutter324.buildFlutterApplication { 68 - pname = "hiddify-app"; 69 - version = "2.5.7-unstable-2025-01-06"; 70 - 71 - src = fetchFromGitHub { 72 - owner = "hiddify"; 73 - repo = "hiddify-app"; 74 - rev = "a7547d298a5f8058446b6a470e56fe4efa3c1ccd"; 75 - hash = "sha256-5I/k2KxdWiNsgwJY+bqMVqtC2eGshKbpLYzsPrmvhmY="; 76 - }; 77 - 78 - pubspecLock = lib.importJSON ./pubspec.lock.json; 79 - 80 - gitHashes = { 81 - circle_flags = "sha256-dqORH4yj0jU8r9hP9NTjrlEO0ReHt4wds7BhgRPq57g="; 82 - flutter_easy_permission = "sha256-fs2dIwFLmeDrlFIIocGw6emOW1whGi9W7nQ7mHqp8R0="; 83 - humanizer = "sha256-zsDeol5l6maT8L8R6RRtHyd7CJn5908nvRXIytxiPqc="; 84 - }; 85 - 86 - postPatch = '' 87 - substituteInPlace linux/my_application.cc \ 88 - --replace-fail "./hiddify.png" "${placeholder "out"}/share/pixmaps/hiddify.png" 89 - ''; 90 - 91 - nativeBuildInputs = [ 92 - autoPatchelfHook 93 - copyDesktopItems 94 - ]; 95 - 96 - buildInputs = [ 97 - libayatana-appindicator 98 - ]; 99 - 100 - preBuild = '' 101 - mkdir -p libcore/bin 102 - cp -r ${libcore}/lib libcore/bin/lib 103 - cp ${libcore}/bin/HiddifyCli libcore/bin/HiddifyCli 104 - packageRun build_runner build --delete-conflicting-outputs 105 - packageRun slang 106 - ''; 107 - 108 - flutterBuildFlags = [ 109 - "--target lib/main_prod.dart" 110 - ]; 111 - 112 - desktopItems = [ 113 - (makeDesktopItem { 114 - name = "hiddify"; 115 - exec = "hiddify"; 116 - icon = "hiddify"; 117 - genericName = "Hiddify"; 118 - desktopName = "Hiddify"; 119 - categories = [ 120 - "Network" 121 - ]; 122 - keywords = [ 123 - "Hiddify" 124 - "Proxy" 125 - "VPN" 126 - "V2ray" 127 - "Nekoray" 128 - "Xray" 129 - "Psiphon" 130 - "OpenVPN" 131 - ]; 132 - }) 133 - ]; 134 - 135 - postInstall = '' 136 - install -Dm0644 assets/images/source/ic_launcher_border.png $out/share/pixmaps/hiddify.png 137 - ''; 138 - 139 - preFixup = '' 140 - patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" $out/app/hiddify-app/lib/lib*.so 141 - ''; 142 - 143 - extraWrapProgramArgs = '' 144 - --prefix LD_LIBRARY_PATH : $out/app/hiddify-app/lib 145 - ''; 146 - 147 - meta = metaCommon // { 148 - homepage = "https://hiddify.com"; 149 - mainProgram = "hiddify"; 150 - platforms = lib.platforms.linux; 151 - }; 152 - }
-2531
pkgs/by-name/hi/hiddify-app/pubspec.lock.json
··· 1 - { 2 - "packages": { 3 - "_fe_analyzer_shared": { 4 - "dependency": "transitive", 5 - "description": { 6 - "name": "_fe_analyzer_shared", 7 - "sha256": "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7", 8 - "url": "https://pub.dev" 9 - }, 10 - "source": "hosted", 11 - "version": "67.0.0" 12 - }, 13 - "accessibility_tools": { 14 - "dependency": "direct main", 15 - "description": { 16 - "name": "accessibility_tools", 17 - "sha256": "deca88d9f181ad6fdd12df9c5fa952c763264da14336ca1c0e4124525725b174", 18 - "url": "https://pub.dev" 19 - }, 20 - "source": "hosted", 21 - "version": "1.0.1" 22 - }, 23 - "analyzer": { 24 - "dependency": "transitive", 25 - "description": { 26 - "name": "analyzer", 27 - "sha256": "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d", 28 - "url": "https://pub.dev" 29 - }, 30 - "source": "hosted", 31 - "version": "6.4.1" 32 - }, 33 - "analyzer_plugin": { 34 - "dependency": "transitive", 35 - "description": { 36 - "name": "analyzer_plugin", 37 - "sha256": "9661b30b13a685efaee9f02e5d01ed9f2b423bd889d28a304d02d704aee69161", 38 - "url": "https://pub.dev" 39 - }, 40 - "source": "hosted", 41 - "version": "0.11.3" 42 - }, 43 - "ansicolor": { 44 - "dependency": "transitive", 45 - "description": { 46 - "name": "ansicolor", 47 - "sha256": "8bf17a8ff6ea17499e40a2d2542c2f481cd7615760c6d34065cb22bfd22e6880", 48 - "url": "https://pub.dev" 49 - }, 50 - "source": "hosted", 51 - "version": "2.0.2" 52 - }, 53 - "archive": { 54 - "dependency": "transitive", 55 - "description": { 56 - "name": "archive", 57 - "sha256": "cb6a278ef2dbb298455e1a713bda08524a175630ec643a242c399c932a0a1f7d", 58 - "url": "https://pub.dev" 59 - }, 60 - "source": "hosted", 61 - "version": "3.6.1" 62 - }, 63 - "args": { 64 - "dependency": "transitive", 65 - "description": { 66 - "name": "args", 67 - "sha256": "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a", 68 - "url": "https://pub.dev" 69 - }, 70 - "source": "hosted", 71 - "version": "2.5.0" 72 - }, 73 - "async": { 74 - "dependency": "transitive", 75 - "description": { 76 - "name": "async", 77 - "sha256": "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c", 78 - "url": "https://pub.dev" 79 - }, 80 - "source": "hosted", 81 - "version": "2.11.0" 82 - }, 83 - "boolean_selector": { 84 - "dependency": "transitive", 85 - "description": { 86 - "name": "boolean_selector", 87 - "sha256": "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66", 88 - "url": "https://pub.dev" 89 - }, 90 - "source": "hosted", 91 - "version": "2.1.1" 92 - }, 93 - "build": { 94 - "dependency": "transitive", 95 - "description": { 96 - "name": "build", 97 - "sha256": "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0", 98 - "url": "https://pub.dev" 99 - }, 100 - "source": "hosted", 101 - "version": "2.4.1" 102 - }, 103 - "build_config": { 104 - "dependency": "transitive", 105 - "description": { 106 - "name": "build_config", 107 - "sha256": "bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1", 108 - "url": "https://pub.dev" 109 - }, 110 - "source": "hosted", 111 - "version": "1.1.1" 112 - }, 113 - "build_daemon": { 114 - "dependency": "transitive", 115 - "description": { 116 - "name": "build_daemon", 117 - "sha256": "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9", 118 - "url": "https://pub.dev" 119 - }, 120 - "source": "hosted", 121 - "version": "4.0.2" 122 - }, 123 - "build_resolvers": { 124 - "dependency": "transitive", 125 - "description": { 126 - "name": "build_resolvers", 127 - "sha256": "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a", 128 - "url": "https://pub.dev" 129 - }, 130 - "source": "hosted", 131 - "version": "2.4.2" 132 - }, 133 - "build_runner": { 134 - "dependency": "direct dev", 135 - "description": { 136 - "name": "build_runner", 137 - "sha256": "644dc98a0f179b872f612d3eb627924b578897c629788e858157fa5e704ca0c7", 138 - "url": "https://pub.dev" 139 - }, 140 - "source": "hosted", 141 - "version": "2.4.11" 142 - }, 143 - "build_runner_core": { 144 - "dependency": "transitive", 145 - "description": { 146 - "name": "build_runner_core", 147 - "sha256": "e3c79f69a64bdfcd8a776a3c28db4eb6e3fb5356d013ae5eb2e52007706d5dbe", 148 - "url": "https://pub.dev" 149 - }, 150 - "source": "hosted", 151 - "version": "7.3.1" 152 - }, 153 - "built_collection": { 154 - "dependency": "transitive", 155 - "description": { 156 - "name": "built_collection", 157 - "sha256": "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100", 158 - "url": "https://pub.dev" 159 - }, 160 - "source": "hosted", 161 - "version": "5.1.1" 162 - }, 163 - "built_value": { 164 - "dependency": "transitive", 165 - "description": { 166 - "name": "built_value", 167 - "sha256": "c7913a9737ee4007efedaffc968c049fd0f3d0e49109e778edc10de9426005cb", 168 - "url": "https://pub.dev" 169 - }, 170 - "source": "hosted", 171 - "version": "8.9.2" 172 - }, 173 - "characters": { 174 - "dependency": "transitive", 175 - "description": { 176 - "name": "characters", 177 - "sha256": "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605", 178 - "url": "https://pub.dev" 179 - }, 180 - "source": "hosted", 181 - "version": "1.3.0" 182 - }, 183 - "charcode": { 184 - "dependency": "transitive", 185 - "description": { 186 - "name": "charcode", 187 - "sha256": "fb98c0f6d12c920a02ee2d998da788bca066ca5f148492b7085ee23372b12306", 188 - "url": "https://pub.dev" 189 - }, 190 - "source": "hosted", 191 - "version": "1.3.1" 192 - }, 193 - "checked_yaml": { 194 - "dependency": "transitive", 195 - "description": { 196 - "name": "checked_yaml", 197 - "sha256": "feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff", 198 - "url": "https://pub.dev" 199 - }, 200 - "source": "hosted", 201 - "version": "2.0.3" 202 - }, 203 - "circle_flags": { 204 - "dependency": "direct main", 205 - "description": { 206 - "path": ".", 207 - "ref": "HEAD", 208 - "resolved-ref": "19d83cba60de91143491a441b5076583bf1681a8", 209 - "url": "https://github.com/hiddify-com/flutter_circle_flags.git" 210 - }, 211 - "source": "git", 212 - "version": "4.1.0" 213 - }, 214 - "cli_util": { 215 - "dependency": "transitive", 216 - "description": { 217 - "name": "cli_util", 218 - "sha256": "c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19", 219 - "url": "https://pub.dev" 220 - }, 221 - "source": "hosted", 222 - "version": "0.4.1" 223 - }, 224 - "clock": { 225 - "dependency": "transitive", 226 - "description": { 227 - "name": "clock", 228 - "sha256": "cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf", 229 - "url": "https://pub.dev" 230 - }, 231 - "source": "hosted", 232 - "version": "1.1.1" 233 - }, 234 - "code_builder": { 235 - "dependency": "transitive", 236 - "description": { 237 - "name": "code_builder", 238 - "sha256": "f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37", 239 - "url": "https://pub.dev" 240 - }, 241 - "source": "hosted", 242 - "version": "4.10.0" 243 - }, 244 - "collection": { 245 - "dependency": "transitive", 246 - "description": { 247 - "name": "collection", 248 - "sha256": "ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a", 249 - "url": "https://pub.dev" 250 - }, 251 - "source": "hosted", 252 - "version": "1.18.0" 253 - }, 254 - "color": { 255 - "dependency": "transitive", 256 - "description": { 257 - "name": "color", 258 - "sha256": "ddcdf1b3badd7008233f5acffaf20ca9f5dc2cd0172b75f68f24526a5f5725cb", 259 - "url": "https://pub.dev" 260 - }, 261 - "source": "hosted", 262 - "version": "3.0.0" 263 - }, 264 - "combine": { 265 - "dependency": "direct main", 266 - "description": { 267 - "name": "combine", 268 - "sha256": "c16464b55d140871fbab5b37909e1808c2f020e46f9ba7deca59d40faabb6008", 269 - "url": "https://pub.dev" 270 - }, 271 - "source": "hosted", 272 - "version": "0.5.7" 273 - }, 274 - "convert": { 275 - "dependency": "transitive", 276 - "description": { 277 - "name": "convert", 278 - "sha256": "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592", 279 - "url": "https://pub.dev" 280 - }, 281 - "source": "hosted", 282 - "version": "3.1.1" 283 - }, 284 - "cross_file": { 285 - "dependency": "transitive", 286 - "description": { 287 - "name": "cross_file", 288 - "sha256": "7caf6a750a0c04effbb52a676dce9a4a592e10ad35c34d6d2d0e4811160d5670", 289 - "url": "https://pub.dev" 290 - }, 291 - "source": "hosted", 292 - "version": "0.3.4+2" 293 - }, 294 - "crypto": { 295 - "dependency": "transitive", 296 - "description": { 297 - "name": "crypto", 298 - "sha256": "ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab", 299 - "url": "https://pub.dev" 300 - }, 301 - "source": "hosted", 302 - "version": "3.0.3" 303 - }, 304 - "csslib": { 305 - "dependency": "transitive", 306 - "description": { 307 - "name": "csslib", 308 - "sha256": "706b5707578e0c1b4b7550f64078f0a0f19dec3f50a178ffae7006b0a9ca58fb", 309 - "url": "https://pub.dev" 310 - }, 311 - "source": "hosted", 312 - "version": "1.0.0" 313 - }, 314 - "csv": { 315 - "dependency": "transitive", 316 - "description": { 317 - "name": "csv", 318 - "sha256": "c6aa2679b2a18cb57652920f674488d89712efaf4d3fdf2e537215b35fc19d6c", 319 - "url": "https://pub.dev" 320 - }, 321 - "source": "hosted", 322 - "version": "6.0.0" 323 - }, 324 - "cupertino_http": { 325 - "dependency": "direct main", 326 - "description": { 327 - "name": "cupertino_http", 328 - "sha256": "7e75c45a27cc13a886ab0a1e4d8570078397057bd612de9d24fe5df0d9387717", 329 - "url": "https://pub.dev" 330 - }, 331 - "source": "hosted", 332 - "version": "1.5.1" 333 - }, 334 - "cupertino_icons": { 335 - "dependency": "direct main", 336 - "description": { 337 - "name": "cupertino_icons", 338 - "sha256": "ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6", 339 - "url": "https://pub.dev" 340 - }, 341 - "source": "hosted", 342 - "version": "1.0.8" 343 - }, 344 - "custom_lint_core": { 345 - "dependency": "transitive", 346 - "description": { 347 - "name": "custom_lint_core", 348 - "sha256": "a85e8f78f4c52f6c63cdaf8c872eb573db0231dcdf3c3a5906d493c1f8bc20e6", 349 - "url": "https://pub.dev" 350 - }, 351 - "source": "hosted", 352 - "version": "0.6.3" 353 - }, 354 - "dart_mappable": { 355 - "dependency": "direct main", 356 - "description": { 357 - "name": "dart_mappable", 358 - "sha256": "47269caf2060533c29b823ff7fa9706502355ffcb61e7f2a374e3a0fb2f2c3f0", 359 - "url": "https://pub.dev" 360 - }, 361 - "source": "hosted", 362 - "version": "4.2.2" 363 - }, 364 - "dart_mappable_builder": { 365 - "dependency": "direct dev", 366 - "description": { 367 - "name": "dart_mappable_builder", 368 - "sha256": "ab5cf9086862d3fceb9773e945b5f95cc5471a28c782a4fc451bd400a4e0c64e", 369 - "url": "https://pub.dev" 370 - }, 371 - "source": "hosted", 372 - "version": "4.2.3" 373 - }, 374 - "dart_style": { 375 - "dependency": "transitive", 376 - "description": { 377 - "name": "dart_style", 378 - "sha256": "99e066ce75c89d6b29903d788a7bb9369cf754f7b24bf70bf4b6d6d6b26853b9", 379 - "url": "https://pub.dev" 380 - }, 381 - "source": "hosted", 382 - "version": "2.3.6" 383 - }, 384 - "dartx": { 385 - "dependency": "direct main", 386 - "description": { 387 - "name": "dartx", 388 - "sha256": "8b25435617027257d43e6508b5fe061012880ddfdaa75a71d607c3de2a13d244", 389 - "url": "https://pub.dev" 390 - }, 391 - "source": "hosted", 392 - "version": "1.2.0" 393 - }, 394 - "decimal": { 395 - "dependency": "transitive", 396 - "description": { 397 - "name": "decimal", 398 - "sha256": "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21", 399 - "url": "https://pub.dev" 400 - }, 401 - "source": "hosted", 402 - "version": "2.3.3" 403 - }, 404 - "dependency_validator": { 405 - "dependency": "direct dev", 406 - "description": { 407 - "name": "dependency_validator", 408 - "sha256": "f727a5627aa405965fab4aef4f468e50a9b632ba0737fd2f98c932fec6d712b9", 409 - "url": "https://pub.dev" 410 - }, 411 - "source": "hosted", 412 - "version": "3.2.3" 413 - }, 414 - "device_info_plus": { 415 - "dependency": "transitive", 416 - "description": { 417 - "name": "device_info_plus", 418 - "sha256": "77f757b789ff68e4eaf9c56d1752309bd9f7ad557cb105b938a7f8eb89e59110", 419 - "url": "https://pub.dev" 420 - }, 421 - "source": "hosted", 422 - "version": "9.1.2" 423 - }, 424 - "device_info_plus_platform_interface": { 425 - "dependency": "transitive", 426 - "description": { 427 - "name": "device_info_plus_platform_interface", 428 - "sha256": "282d3cf731045a2feb66abfe61bbc40870ae50a3ed10a4d3d217556c35c8c2ba", 429 - "url": "https://pub.dev" 430 - }, 431 - "source": "hosted", 432 - "version": "7.0.1" 433 - }, 434 - "dio": { 435 - "dependency": "direct main", 436 - "description": { 437 - "name": "dio", 438 - "sha256": "e17f6b3097b8c51b72c74c9f071a605c47bcc8893839bd66732457a5ebe73714", 439 - "url": "https://pub.dev" 440 - }, 441 - "source": "hosted", 442 - "version": "5.5.0+1" 443 - }, 444 - "dio_smart_retry": { 445 - "dependency": "direct main", 446 - "description": { 447 - "name": "dio_smart_retry", 448 - "sha256": "3d71450c19b4d91ef4c7d726a55a284bfc11eb3634f1f25006cdfab3f8595653", 449 - "url": "https://pub.dev" 450 - }, 451 - "source": "hosted", 452 - "version": "6.0.0" 453 - }, 454 - "dio_web_adapter": { 455 - "dependency": "transitive", 456 - "description": { 457 - "name": "dio_web_adapter", 458 - "sha256": "36c5b2d79eb17cdae41e974b7a8284fec631651d2a6f39a8a2ff22327e90aeac", 459 - "url": "https://pub.dev" 460 - }, 461 - "source": "hosted", 462 - "version": "1.0.1" 463 - }, 464 - "drift": { 465 - "dependency": "direct main", 466 - "description": { 467 - "name": "drift", 468 - "sha256": "4e0ffee40d23f0b809e6cff1ad202886f51d629649073ed42d9cd1d194ea943e", 469 - "url": "https://pub.dev" 470 - }, 471 - "source": "hosted", 472 - "version": "2.19.1+1" 473 - }, 474 - "drift_dev": { 475 - "dependency": "direct dev", 476 - "description": { 477 - "name": "drift_dev", 478 - "sha256": "ac7647c6cedca99724ca300cff9181f6dd799428f8ed71f94159ed0528eaec26", 479 - "url": "https://pub.dev" 480 - }, 481 - "source": "hosted", 482 - "version": "2.19.1" 483 - }, 484 - "dynamic_color": { 485 - "dependency": "direct main", 486 - "description": { 487 - "name": "dynamic_color", 488 - "sha256": "eae98052fa6e2826bdac3dd2e921c6ce2903be15c6b7f8b6d8a5d49b5086298d", 489 - "url": "https://pub.dev" 490 - }, 491 - "source": "hosted", 492 - "version": "1.7.0" 493 - }, 494 - "equatable": { 495 - "dependency": "transitive", 496 - "description": { 497 - "name": "equatable", 498 - "sha256": "c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2", 499 - "url": "https://pub.dev" 500 - }, 501 - "source": "hosted", 502 - "version": "2.0.5" 503 - }, 504 - "fake_async": { 505 - "dependency": "transitive", 506 - "description": { 507 - "name": "fake_async", 508 - "sha256": "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78", 509 - "url": "https://pub.dev" 510 - }, 511 - "source": "hosted", 512 - "version": "1.3.1" 513 - }, 514 - "ffi": { 515 - "dependency": "direct main", 516 - "description": { 517 - "name": "ffi", 518 - "sha256": "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21", 519 - "url": "https://pub.dev" 520 - }, 521 - "source": "hosted", 522 - "version": "2.1.2" 523 - }, 524 - "ffigen": { 525 - "dependency": "direct dev", 526 - "description": { 527 - "name": "ffigen", 528 - "sha256": "d3e76c2ad48a4e7f93a29a162006f00eba46ce7c08194a77bb5c5e97d1b5ff0a", 529 - "url": "https://pub.dev" 530 - }, 531 - "source": "hosted", 532 - "version": "8.0.2" 533 - }, 534 - "file": { 535 - "dependency": "transitive", 536 - "description": { 537 - "name": "file", 538 - "sha256": "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d", 539 - "url": "https://pub.dev" 540 - }, 541 - "source": "hosted", 542 - "version": "6.1.4" 543 - }, 544 - "fixnum": { 545 - "dependency": "transitive", 546 - "description": { 547 - "name": "fixnum", 548 - "sha256": "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1", 549 - "url": "https://pub.dev" 550 - }, 551 - "source": "hosted", 552 - "version": "1.1.0" 553 - }, 554 - "fluentui_system_icons": { 555 - "dependency": "direct main", 556 - "description": { 557 - "name": "fluentui_system_icons", 558 - "sha256": "af92e0abc8a4060ffdcae2ad31a050cd242bf9eff121769b9cfb11fe05d08d6c", 559 - "url": "https://pub.dev" 560 - }, 561 - "source": "hosted", 562 - "version": "1.1.252" 563 - }, 564 - "flutter": { 565 - "dependency": "direct main", 566 - "description": "flutter", 567 - "source": "sdk", 568 - "version": "0.0.0" 569 - }, 570 - "flutter_adaptive_scaffold": { 571 - "dependency": "direct main", 572 - "description": { 573 - "name": "flutter_adaptive_scaffold", 574 - "sha256": "a464b74540401cade07af0ae84d19f210534cac67651a150fb413507040b74f6", 575 - "url": "https://pub.dev" 576 - }, 577 - "source": "hosted", 578 - "version": "0.1.12" 579 - }, 580 - "flutter_animate": { 581 - "dependency": "direct main", 582 - "description": { 583 - "name": "flutter_animate", 584 - "sha256": "7c8a6594a9252dad30cc2ef16e33270b6248c4dedc3b3d06c86c4f3f4dc05ae5", 585 - "url": "https://pub.dev" 586 - }, 587 - "source": "hosted", 588 - "version": "4.5.0" 589 - }, 590 - "flutter_displaymode": { 591 - "dependency": "direct main", 592 - "description": { 593 - "name": "flutter_displaymode", 594 - "sha256": "42c5e9abd13d28ed74f701b60529d7f8416947e58256e6659c5550db719c57ef", 595 - "url": "https://pub.dev" 596 - }, 597 - "source": "hosted", 598 - "version": "0.6.0" 599 - }, 600 - "flutter_easy_permission": { 601 - "dependency": "direct main", 602 - "description": { 603 - "path": ".", 604 - "ref": "HEAD", 605 - "resolved-ref": "3f6611f2a88f7ed640207c3accab9178f76da2c6", 606 - "url": "https://github.com/unger1984/flutter_easy_permission.git" 607 - }, 608 - "source": "git", 609 - "version": "1.1.3" 610 - }, 611 - "flutter_gen_core": { 612 - "dependency": "transitive", 613 - "description": { 614 - "name": "flutter_gen_core", 615 - "sha256": "d8e828ad015a8511624491b78ad8e3f86edb7993528b1613aefbb4ad95947795", 616 - "url": "https://pub.dev" 617 - }, 618 - "source": "hosted", 619 - "version": "5.6.0" 620 - }, 621 - "flutter_gen_runner": { 622 - "dependency": "direct dev", 623 - "description": { 624 - "name": "flutter_gen_runner", 625 - "sha256": "931b03f77c164df0a4815aac0efc619a6ac8ec4cada55025119fca4894dada90", 626 - "url": "https://pub.dev" 627 - }, 628 - "source": "hosted", 629 - "version": "5.6.0" 630 - }, 631 - "flutter_hooks": { 632 - "dependency": "direct main", 633 - "description": { 634 - "name": "flutter_hooks", 635 - "sha256": "cde36b12f7188c85286fba9b38cc5a902e7279f36dd676967106c041dc9dde70", 636 - "url": "https://pub.dev" 637 - }, 638 - "source": "hosted", 639 - "version": "0.20.5" 640 - }, 641 - "flutter_keyboard_visibility": { 642 - "dependency": "transitive", 643 - "description": { 644 - "name": "flutter_keyboard_visibility", 645 - "sha256": "98664be7be0e3ffca00de50f7f6a287ab62c763fc8c762e0a21584584a3ff4f8", 646 - "url": "https://pub.dev" 647 - }, 648 - "source": "hosted", 649 - "version": "6.0.0" 650 - }, 651 - "flutter_keyboard_visibility_linux": { 652 - "dependency": "transitive", 653 - "description": { 654 - "name": "flutter_keyboard_visibility_linux", 655 - "sha256": "6fba7cd9bb033b6ddd8c2beb4c99ad02d728f1e6e6d9b9446667398b2ac39f08", 656 - "url": "https://pub.dev" 657 - }, 658 - "source": "hosted", 659 - "version": "1.0.0" 660 - }, 661 - "flutter_keyboard_visibility_macos": { 662 - "dependency": "transitive", 663 - "description": { 664 - "name": "flutter_keyboard_visibility_macos", 665 - "sha256": "c5c49b16fff453dfdafdc16f26bdd8fb8d55812a1d50b0ce25fc8d9f2e53d086", 666 - "url": "https://pub.dev" 667 - }, 668 - "source": "hosted", 669 - "version": "1.0.0" 670 - }, 671 - "flutter_keyboard_visibility_platform_interface": { 672 - "dependency": "transitive", 673 - "description": { 674 - "name": "flutter_keyboard_visibility_platform_interface", 675 - "sha256": "e43a89845873f7be10cb3884345ceb9aebf00a659f479d1c8f4293fcb37022a4", 676 - "url": "https://pub.dev" 677 - }, 678 - "source": "hosted", 679 - "version": "2.0.0" 680 - }, 681 - "flutter_keyboard_visibility_web": { 682 - "dependency": "transitive", 683 - "description": { 684 - "name": "flutter_keyboard_visibility_web", 685 - "sha256": "d3771a2e752880c79203f8d80658401d0c998e4183edca05a149f5098ce6e3d1", 686 - "url": "https://pub.dev" 687 - }, 688 - "source": "hosted", 689 - "version": "2.0.0" 690 - }, 691 - "flutter_keyboard_visibility_windows": { 692 - "dependency": "transitive", 693 - "description": { 694 - "name": "flutter_keyboard_visibility_windows", 695 - "sha256": "fc4b0f0b6be9b93ae527f3d527fb56ee2d918cd88bbca438c478af7bcfd0ef73", 696 - "url": "https://pub.dev" 697 - }, 698 - "source": "hosted", 699 - "version": "1.0.0" 700 - }, 701 - "flutter_localizations": { 702 - "dependency": "direct main", 703 - "description": "flutter", 704 - "source": "sdk", 705 - "version": "0.0.0" 706 - }, 707 - "flutter_loggy": { 708 - "dependency": "direct main", 709 - "description": { 710 - "name": "flutter_loggy", 711 - "sha256": "c758629403e19115af198993ff7bd3af2c5a337de16ee23acda2e6f29df1db48", 712 - "url": "https://pub.dev" 713 - }, 714 - "source": "hosted", 715 - "version": "2.0.3" 716 - }, 717 - "flutter_loggy_dio": { 718 - "dependency": "direct main", 719 - "description": { 720 - "name": "flutter_loggy_dio", 721 - "sha256": "d17d26bb85667c14aefa6dce9b12bd2c1ae13cd75e89d25b0c799b063be55e3c", 722 - "url": "https://pub.dev" 723 - }, 724 - "source": "hosted", 725 - "version": "3.1.0" 726 - }, 727 - "flutter_native_splash": { 728 - "dependency": "direct main", 729 - "description": { 730 - "name": "flutter_native_splash", 731 - "sha256": "aa06fec78de2190f3db4319dd60fdc8d12b2626e93ef9828633928c2dcaea840", 732 - "url": "https://pub.dev" 733 - }, 734 - "source": "hosted", 735 - "version": "2.4.1" 736 - }, 737 - "flutter_riverpod": { 738 - "dependency": "transitive", 739 - "description": { 740 - "name": "flutter_riverpod", 741 - "sha256": "0f1974eff5bbe774bf1d870e406fc6f29e3d6f1c46bd9c58e7172ff68a785d7d", 742 - "url": "https://pub.dev" 743 - }, 744 - "source": "hosted", 745 - "version": "2.5.1" 746 - }, 747 - "flutter_shaders": { 748 - "dependency": "transitive", 749 - "description": { 750 - "name": "flutter_shaders", 751 - "sha256": "02750b545c01ff4d8e9bbe8f27a7731aa3778402506c67daa1de7f5fc3f4befe", 752 - "url": "https://pub.dev" 753 - }, 754 - "source": "hosted", 755 - "version": "0.1.2" 756 - }, 757 - "flutter_svg": { 758 - "dependency": "direct main", 759 - "description": { 760 - "name": "flutter_svg", 761 - "sha256": "7b4ca6cf3304575fe9c8ec64813c8d02ee41d2afe60bcfe0678bcb5375d596a2", 762 - "url": "https://pub.dev" 763 - }, 764 - "source": "hosted", 765 - "version": "2.0.10+1" 766 - }, 767 - "flutter_test": { 768 - "dependency": "direct dev", 769 - "description": "flutter", 770 - "source": "sdk", 771 - "version": "0.0.0" 772 - }, 773 - "flutter_timezone": { 774 - "dependency": "transitive", 775 - "description": { 776 - "name": "flutter_timezone", 777 - "sha256": "06b35132c98fa188db3c4b654b7e1af7ccd01dfe12a004d58be423357605fb24", 778 - "url": "https://pub.dev" 779 - }, 780 - "source": "hosted", 781 - "version": "1.0.8" 782 - }, 783 - "flutter_typeahead": { 784 - "dependency": "direct main", 785 - "description": { 786 - "name": "flutter_typeahead", 787 - "sha256": "d64712c65db240b1057559b952398ebb6e498077baeebf9b0731dade62438a6d", 788 - "url": "https://pub.dev" 789 - }, 790 - "source": "hosted", 791 - "version": "5.2.0" 792 - }, 793 - "flutter_web_plugins": { 794 - "dependency": "transitive", 795 - "description": "flutter", 796 - "source": "sdk", 797 - "version": "0.0.0" 798 - }, 799 - "fpdart": { 800 - "dependency": "direct main", 801 - "description": { 802 - "name": "fpdart", 803 - "sha256": "7413acc5a6569a3fe8277928fc7487f3198530f0c4e635d0baef199ea36e8ee9", 804 - "url": "https://pub.dev" 805 - }, 806 - "source": "hosted", 807 - "version": "1.1.0" 808 - }, 809 - "freezed": { 810 - "dependency": "direct dev", 811 - "description": { 812 - "name": "freezed", 813 - "sha256": "a434911f643466d78462625df76fd9eb13e57348ff43fe1f77bbe909522c67a1", 814 - "url": "https://pub.dev" 815 - }, 816 - "source": "hosted", 817 - "version": "2.5.2" 818 - }, 819 - "freezed_annotation": { 820 - "dependency": "direct main", 821 - "description": { 822 - "name": "freezed_annotation", 823 - "sha256": "c2e2d632dd9b8a2b7751117abcfc2b4888ecfe181bd9fca7170d9ef02e595fe2", 824 - "url": "https://pub.dev" 825 - }, 826 - "source": "hosted", 827 - "version": "2.4.4" 828 - }, 829 - "frontend_server_client": { 830 - "dependency": "transitive", 831 - "description": { 832 - "name": "frontend_server_client", 833 - "sha256": "f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694", 834 - "url": "https://pub.dev" 835 - }, 836 - "source": "hosted", 837 - "version": "4.0.0" 838 - }, 839 - "gap": { 840 - "dependency": "direct main", 841 - "description": { 842 - "name": "gap", 843 - "sha256": "f19387d4e32f849394758b91377f9153a1b41d79513ef7668c088c77dbc6955d", 844 - "url": "https://pub.dev" 845 - }, 846 - "source": "hosted", 847 - "version": "3.0.1" 848 - }, 849 - "glob": { 850 - "dependency": "transitive", 851 - "description": { 852 - "name": "glob", 853 - "sha256": "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63", 854 - "url": "https://pub.dev" 855 - }, 856 - "source": "hosted", 857 - "version": "2.1.2" 858 - }, 859 - "globbing": { 860 - "dependency": "transitive", 861 - "description": { 862 - "name": "globbing", 863 - "sha256": "4f89cfaf6fa74c9c1740a96259da06bd45411ede56744e28017cc534a12b6e2d", 864 - "url": "https://pub.dev" 865 - }, 866 - "source": "hosted", 867 - "version": "1.0.0" 868 - }, 869 - "go_router": { 870 - "dependency": "direct main", 871 - "description": { 872 - "name": "go_router", 873 - "sha256": "b465e99ce64ba75e61c8c0ce3d87b66d8ac07f0b35d0a7e0263fcfc10f99e836", 874 - "url": "https://pub.dev" 875 - }, 876 - "source": "hosted", 877 - "version": "13.2.5" 878 - }, 879 - "go_router_builder": { 880 - "dependency": "direct dev", 881 - "description": { 882 - "name": "go_router_builder", 883 - "sha256": "3425b72dea69209754ac6b71b4da34165dcd4d4a2934713029945709a246427a", 884 - "url": "https://pub.dev" 885 - }, 886 - "source": "hosted", 887 - "version": "2.7.1" 888 - }, 889 - "google_identity_services_web": { 890 - "dependency": "transitive", 891 - "description": { 892 - "name": "google_identity_services_web", 893 - "sha256": "5be191523702ba8d7a01ca97c17fca096822ccf246b0a9f11923a6ded06199b6", 894 - "url": "https://pub.dev" 895 - }, 896 - "source": "hosted", 897 - "version": "0.3.1+4" 898 - }, 899 - "googleapis_auth": { 900 - "dependency": "transitive", 901 - "description": { 902 - "name": "googleapis_auth", 903 - "sha256": "befd71383a955535060acde8792e7efc11d2fccd03dd1d3ec434e85b68775938", 904 - "url": "https://pub.dev" 905 - }, 906 - "source": "hosted", 907 - "version": "1.6.0" 908 - }, 909 - "graphs": { 910 - "dependency": "transitive", 911 - "description": { 912 - "name": "graphs", 913 - "sha256": "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0", 914 - "url": "https://pub.dev" 915 - }, 916 - "source": "hosted", 917 - "version": "2.3.2" 918 - }, 919 - "grpc": { 920 - "dependency": "direct main", 921 - "description": { 922 - "name": "grpc", 923 - "sha256": "e93ee3bce45c134bf44e9728119102358c7cd69de7832d9a874e2e74eb8cab40", 924 - "url": "https://pub.dev" 925 - }, 926 - "source": "hosted", 927 - "version": "3.2.4" 928 - }, 929 - "hashcodes": { 930 - "dependency": "transitive", 931 - "description": { 932 - "name": "hashcodes", 933 - "sha256": "80f9410a5b3c8e110c4b7604546034749259f5d6dcca63e0d3c17c9258f1a651", 934 - "url": "https://pub.dev" 935 - }, 936 - "source": "hosted", 937 - "version": "2.0.0" 938 - }, 939 - "hooks_riverpod": { 940 - "dependency": "direct main", 941 - "description": { 942 - "name": "hooks_riverpod", 943 - "sha256": "45b2030a18bcd6dbd680c2c91bc3b33e3fe7c323e3acb5ecec93a613e2fbaa8a", 944 - "url": "https://pub.dev" 945 - }, 946 - "source": "hosted", 947 - "version": "2.5.1" 948 - }, 949 - "html": { 950 - "dependency": "transitive", 951 - "description": { 952 - "name": "html", 953 - "sha256": "3a7812d5bcd2894edf53dfaf8cd640876cf6cef50a8f238745c8b8120ea74d3a", 954 - "url": "https://pub.dev" 955 - }, 956 - "source": "hosted", 957 - "version": "0.15.4" 958 - }, 959 - "http": { 960 - "dependency": "direct main", 961 - "description": { 962 - "name": "http", 963 - "sha256": "b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010", 964 - "url": "https://pub.dev" 965 - }, 966 - "source": "hosted", 967 - "version": "1.2.2" 968 - }, 969 - "http2": { 970 - "dependency": "transitive", 971 - "description": { 972 - "name": "http2", 973 - "sha256": "9ced024a160b77aba8fb8674e38f70875e321d319e6f303ec18e87bd5a4b0c1d", 974 - "url": "https://pub.dev" 975 - }, 976 - "source": "hosted", 977 - "version": "2.3.0" 978 - }, 979 - "http_multi_server": { 980 - "dependency": "transitive", 981 - "description": { 982 - "name": "http_multi_server", 983 - "sha256": "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b", 984 - "url": "https://pub.dev" 985 - }, 986 - "source": "hosted", 987 - "version": "3.2.1" 988 - }, 989 - "http_parser": { 990 - "dependency": "transitive", 991 - "description": { 992 - "name": "http_parser", 993 - "sha256": "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b", 994 - "url": "https://pub.dev" 995 - }, 996 - "source": "hosted", 997 - "version": "4.0.2" 998 - }, 999 - "http_profile": { 1000 - "dependency": "transitive", 1001 - "description": { 1002 - "name": "http_profile", 1003 - "sha256": "7e679e355b09aaee2ab5010915c932cce3f2d1c11c3b2dc177891687014ffa78", 1004 - "url": "https://pub.dev" 1005 - }, 1006 - "source": "hosted", 1007 - "version": "0.1.0" 1008 - }, 1009 - "humanizer": { 1010 - "dependency": "direct main", 1011 - "description": { 1012 - "path": ".", 1013 - "ref": "up-version", 1014 - "resolved-ref": "8ae61d68357fae197be7ee71d67ccb9498b9d5c7", 1015 - "url": "https://github.com/alex-relov/humanizer" 1016 - }, 1017 - "source": "git", 1018 - "version": "2.3.0" 1019 - }, 1020 - "iconsax_flutter": { 1021 - "dependency": "transitive", 1022 - "description": { 1023 - "name": "iconsax_flutter", 1024 - "sha256": "95b65699da8ea98f87c5d232f06b0debaaf1ec1332b697e4d90969ec9a93037d", 1025 - "url": "https://pub.dev" 1026 - }, 1027 - "source": "hosted", 1028 - "version": "1.0.0" 1029 - }, 1030 - "image": { 1031 - "dependency": "transitive", 1032 - "description": { 1033 - "name": "image", 1034 - "sha256": "2237616a36c0d69aef7549ab439b833fb7f9fb9fc861af2cc9ac3eedddd69ca8", 1035 - "url": "https://pub.dev" 1036 - }, 1037 - "source": "hosted", 1038 - "version": "4.2.0" 1039 - }, 1040 - "image_size_getter": { 1041 - "dependency": "transitive", 1042 - "description": { 1043 - "name": "image_size_getter", 1044 - "sha256": "f98c4246144e9b968899d2dfde69091e22a539bb64bc9b0bea51505fbb490e57", 1045 - "url": "https://pub.dev" 1046 - }, 1047 - "source": "hosted", 1048 - "version": "2.1.3" 1049 - }, 1050 - "in_app_review": { 1051 - "dependency": "direct main", 1052 - "description": { 1053 - "name": "in_app_review", 1054 - "sha256": "99869244d09adc76af16bf8fd731dd13cef58ecafd5917847589c49f378cbb30", 1055 - "url": "https://pub.dev" 1056 - }, 1057 - "source": "hosted", 1058 - "version": "2.0.9" 1059 - }, 1060 - "in_app_review_platform_interface": { 1061 - "dependency": "transitive", 1062 - "description": { 1063 - "name": "in_app_review_platform_interface", 1064 - "sha256": "fed2c755f2125caa9ae10495a3c163aa7fab5af3585a9c62ef4a6920c5b45f10", 1065 - "url": "https://pub.dev" 1066 - }, 1067 - "source": "hosted", 1068 - "version": "2.0.5" 1069 - }, 1070 - "injector": { 1071 - "dependency": "transitive", 1072 - "description": { 1073 - "name": "injector", 1074 - "sha256": "ed389bed5b48a699d5b9561c985023d0d5cc88dd5ff2237aadcce5a5ab433e4e", 1075 - "url": "https://pub.dev" 1076 - }, 1077 - "source": "hosted", 1078 - "version": "3.0.0" 1079 - }, 1080 - "intl": { 1081 - "dependency": "direct main", 1082 - "description": { 1083 - "name": "intl", 1084 - "sha256": "d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf", 1085 - "url": "https://pub.dev" 1086 - }, 1087 - "source": "hosted", 1088 - "version": "0.19.0" 1089 - }, 1090 - "io": { 1091 - "dependency": "transitive", 1092 - "description": { 1093 - "name": "io", 1094 - "sha256": "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e", 1095 - "url": "https://pub.dev" 1096 - }, 1097 - "source": "hosted", 1098 - "version": "1.0.4" 1099 - }, 1100 - "iregexp": { 1101 - "dependency": "transitive", 1102 - "description": { 1103 - "name": "iregexp", 1104 - "sha256": "143859dcaeecf6f683102786762d70a47ef8441a0d2287a158172d32d38799cf", 1105 - "url": "https://pub.dev" 1106 - }, 1107 - "source": "hosted", 1108 - "version": "0.1.2" 1109 - }, 1110 - "js": { 1111 - "dependency": "transitive", 1112 - "description": { 1113 - "name": "js", 1114 - "sha256": "c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf", 1115 - "url": "https://pub.dev" 1116 - }, 1117 - "source": "hosted", 1118 - "version": "0.7.1" 1119 - }, 1120 - "json2yaml": { 1121 - "dependency": "transitive", 1122 - "description": { 1123 - "name": "json2yaml", 1124 - "sha256": "da94630fbc56079426fdd167ae58373286f603371075b69bf46d848d63ba3e51", 1125 - "url": "https://pub.dev" 1126 - }, 1127 - "source": "hosted", 1128 - "version": "3.0.1" 1129 - }, 1130 - "json_annotation": { 1131 - "dependency": "direct main", 1132 - "description": { 1133 - "name": "json_annotation", 1134 - "sha256": "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1", 1135 - "url": "https://pub.dev" 1136 - }, 1137 - "source": "hosted", 1138 - "version": "4.9.0" 1139 - }, 1140 - "json_path": { 1141 - "dependency": "direct main", 1142 - "description": { 1143 - "name": "json_path", 1144 - "sha256": "7a06bbb1cfad390b20fb7a2ca5e67d9ba59633879c6d71142b80fbf61c3b66f6", 1145 - "url": "https://pub.dev" 1146 - }, 1147 - "source": "hosted", 1148 - "version": "0.7.4" 1149 - }, 1150 - "json_serializable": { 1151 - "dependency": "direct dev", 1152 - "description": { 1153 - "name": "json_serializable", 1154 - "sha256": "ea1432d167339ea9b5bb153f0571d0039607a873d6e04e0117af043f14a1fd4b", 1155 - "url": "https://pub.dev" 1156 - }, 1157 - "source": "hosted", 1158 - "version": "6.8.0" 1159 - }, 1160 - "launch_at_startup": { 1161 - "dependency": "direct main", 1162 - "description": { 1163 - "name": "launch_at_startup", 1164 - "sha256": "93fc5638e088290004fae358bae691486673d469957d461d9dae5b12248593eb", 1165 - "url": "https://pub.dev" 1166 - }, 1167 - "source": "hosted", 1168 - "version": "0.2.2" 1169 - }, 1170 - "leak_tracker": { 1171 - "dependency": "transitive", 1172 - "description": { 1173 - "name": "leak_tracker", 1174 - "sha256": "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05", 1175 - "url": "https://pub.dev" 1176 - }, 1177 - "source": "hosted", 1178 - "version": "10.0.5" 1179 - }, 1180 - "leak_tracker_flutter_testing": { 1181 - "dependency": "transitive", 1182 - "description": { 1183 - "name": "leak_tracker_flutter_testing", 1184 - "sha256": "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806", 1185 - "url": "https://pub.dev" 1186 - }, 1187 - "source": "hosted", 1188 - "version": "3.0.5" 1189 - }, 1190 - "leak_tracker_testing": { 1191 - "dependency": "transitive", 1192 - "description": { 1193 - "name": "leak_tracker_testing", 1194 - "sha256": "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3", 1195 - "url": "https://pub.dev" 1196 - }, 1197 - "source": "hosted", 1198 - "version": "3.0.1" 1199 - }, 1200 - "lint": { 1201 - "dependency": "direct dev", 1202 - "description": { 1203 - "name": "lint", 1204 - "sha256": "d758a5211fce7fd3f5e316f804daefecdc34c7e53559716125e6da7388ae8565", 1205 - "url": "https://pub.dev" 1206 - }, 1207 - "source": "hosted", 1208 - "version": "2.3.0" 1209 - }, 1210 - "logging": { 1211 - "dependency": "transitive", 1212 - "description": { 1213 - "name": "logging", 1214 - "sha256": "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340", 1215 - "url": "https://pub.dev" 1216 - }, 1217 - "source": "hosted", 1218 - "version": "1.2.0" 1219 - }, 1220 - "loggy": { 1221 - "dependency": "direct main", 1222 - "description": { 1223 - "name": "loggy", 1224 - "sha256": "981e03162bbd3a5a843026f75f73d26e4a0d8aa035ae060456ca7b30dfd1e339", 1225 - "url": "https://pub.dev" 1226 - }, 1227 - "source": "hosted", 1228 - "version": "2.0.3" 1229 - }, 1230 - "matcher": { 1231 - "dependency": "transitive", 1232 - "description": { 1233 - "name": "matcher", 1234 - "sha256": "d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb", 1235 - "url": "https://pub.dev" 1236 - }, 1237 - "source": "hosted", 1238 - "version": "0.12.16+1" 1239 - }, 1240 - "material_color_utilities": { 1241 - "dependency": "transitive", 1242 - "description": { 1243 - "name": "material_color_utilities", 1244 - "sha256": "f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec", 1245 - "url": "https://pub.dev" 1246 - }, 1247 - "source": "hosted", 1248 - "version": "0.11.1" 1249 - }, 1250 - "maybe_just_nothing": { 1251 - "dependency": "transitive", 1252 - "description": { 1253 - "name": "maybe_just_nothing", 1254 - "sha256": "0c06326e26d08f6ed43247404376366dc4d756cef23a4f1db765f546224c35e0", 1255 - "url": "https://pub.dev" 1256 - }, 1257 - "source": "hosted", 1258 - "version": "0.5.3" 1259 - }, 1260 - "menu_base": { 1261 - "dependency": "transitive", 1262 - "description": { 1263 - "name": "menu_base", 1264 - "sha256": "820368014a171bd1241030278e6c2617354f492f5c703d7b7d4570a6b8b84405", 1265 - "url": "https://pub.dev" 1266 - }, 1267 - "source": "hosted", 1268 - "version": "0.1.1" 1269 - }, 1270 - "meta": { 1271 - "dependency": "direct main", 1272 - "description": { 1273 - "name": "meta", 1274 - "sha256": "bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7", 1275 - "url": "https://pub.dev" 1276 - }, 1277 - "source": "hosted", 1278 - "version": "1.15.0" 1279 - }, 1280 - "mime": { 1281 - "dependency": "transitive", 1282 - "description": { 1283 - "name": "mime", 1284 - "sha256": "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2", 1285 - "url": "https://pub.dev" 1286 - }, 1287 - "source": "hosted", 1288 - "version": "1.0.5" 1289 - }, 1290 - "mobile_scanner": { 1291 - "dependency": "direct main", 1292 - "description": { 1293 - "name": "mobile_scanner", 1294 - "sha256": "b8c0e9afcfd52534f85ec666f3d52156f560b5e6c25b1e3d4fe2087763607926", 1295 - "url": "https://pub.dev" 1296 - }, 1297 - "source": "hosted", 1298 - "version": "5.1.1" 1299 - }, 1300 - "neat_periodic_task": { 1301 - "dependency": "direct main", 1302 - "description": { 1303 - "name": "neat_periodic_task", 1304 - "sha256": "e0dda74c996781e154f6145028dbacbcd9dbef242f5a140fa774e39381c2bf97", 1305 - "url": "https://pub.dev" 1306 - }, 1307 - "source": "hosted", 1308 - "version": "2.0.1" 1309 - }, 1310 - "os_detect": { 1311 - "dependency": "transitive", 1312 - "description": { 1313 - "name": "os_detect", 1314 - "sha256": "faf3bcf39515e64da8ff76b2f2805b20a6ff47ae515393e535f8579ff91d6b7f", 1315 - "url": "https://pub.dev" 1316 - }, 1317 - "source": "hosted", 1318 - "version": "2.0.1" 1319 - }, 1320 - "package_config": { 1321 - "dependency": "transitive", 1322 - "description": { 1323 - "name": "package_config", 1324 - "sha256": "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd", 1325 - "url": "https://pub.dev" 1326 - }, 1327 - "source": "hosted", 1328 - "version": "2.1.0" 1329 - }, 1330 - "package_info_plus": { 1331 - "dependency": "direct main", 1332 - "description": { 1333 - "name": "package_info_plus", 1334 - "sha256": "88bc797f44a94814f2213db1c9bd5badebafdfb8290ca9f78d4b9ee2a3db4d79", 1335 - "url": "https://pub.dev" 1336 - }, 1337 - "source": "hosted", 1338 - "version": "5.0.1" 1339 - }, 1340 - "package_info_plus_platform_interface": { 1341 - "dependency": "transitive", 1342 - "description": { 1343 - "name": "package_info_plus_platform_interface", 1344 - "sha256": "9bc8ba46813a4cc42c66ab781470711781940780fd8beddd0c3da62506d3a6c6", 1345 - "url": "https://pub.dev" 1346 - }, 1347 - "source": "hosted", 1348 - "version": "2.0.1" 1349 - }, 1350 - "path": { 1351 - "dependency": "direct main", 1352 - "description": { 1353 - "name": "path", 1354 - "sha256": "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af", 1355 - "url": "https://pub.dev" 1356 - }, 1357 - "source": "hosted", 1358 - "version": "1.9.0" 1359 - }, 1360 - "path_parsing": { 1361 - "dependency": "transitive", 1362 - "description": { 1363 - "name": "path_parsing", 1364 - "sha256": "e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf", 1365 - "url": "https://pub.dev" 1366 - }, 1367 - "source": "hosted", 1368 - "version": "1.0.1" 1369 - }, 1370 - "path_provider": { 1371 - "dependency": "direct main", 1372 - "description": { 1373 - "name": "path_provider", 1374 - "sha256": "fec0d61223fba3154d87759e3cc27fe2c8dc498f6386c6d6fc80d1afdd1bf378", 1375 - "url": "https://pub.dev" 1376 - }, 1377 - "source": "hosted", 1378 - "version": "2.1.4" 1379 - }, 1380 - "path_provider_android": { 1381 - "dependency": "transitive", 1382 - "description": { 1383 - "name": "path_provider_android", 1384 - "sha256": "490539678396d4c3c0b06efdaab75ae60675c3e0c66f72bc04c2e2c1e0e2abeb", 1385 - "url": "https://pub.dev" 1386 - }, 1387 - "source": "hosted", 1388 - "version": "2.2.9" 1389 - }, 1390 - "path_provider_foundation": { 1391 - "dependency": "transitive", 1392 - "description": { 1393 - "name": "path_provider_foundation", 1394 - "sha256": "f234384a3fdd67f989b4d54a5d73ca2a6c422fa55ae694381ae0f4375cd1ea16", 1395 - "url": "https://pub.dev" 1396 - }, 1397 - "source": "hosted", 1398 - "version": "2.4.0" 1399 - }, 1400 - "path_provider_linux": { 1401 - "dependency": "transitive", 1402 - "description": { 1403 - "name": "path_provider_linux", 1404 - "sha256": "f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279", 1405 - "url": "https://pub.dev" 1406 - }, 1407 - "source": "hosted", 1408 - "version": "2.2.1" 1409 - }, 1410 - "path_provider_platform_interface": { 1411 - "dependency": "transitive", 1412 - "description": { 1413 - "name": "path_provider_platform_interface", 1414 - "sha256": "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334", 1415 - "url": "https://pub.dev" 1416 - }, 1417 - "source": "hosted", 1418 - "version": "2.1.2" 1419 - }, 1420 - "path_provider_windows": { 1421 - "dependency": "transitive", 1422 - "description": { 1423 - "name": "path_provider_windows", 1424 - "sha256": "bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7", 1425 - "url": "https://pub.dev" 1426 - }, 1427 - "source": "hosted", 1428 - "version": "2.3.0" 1429 - }, 1430 - "pausable_timer": { 1431 - "dependency": "transitive", 1432 - "description": { 1433 - "name": "pausable_timer", 1434 - "sha256": "6ef1a95441ec3439de6fb63f39a011b67e693198e7dae14e20675c3c00e86074", 1435 - "url": "https://pub.dev" 1436 - }, 1437 - "source": "hosted", 1438 - "version": "3.1.0+3" 1439 - }, 1440 - "percent_indicator": { 1441 - "dependency": "direct main", 1442 - "description": { 1443 - "name": "percent_indicator", 1444 - "sha256": "c37099ad833a883c9d71782321cb65c3a848c21b6939b6185f0ff6640d05814c", 1445 - "url": "https://pub.dev" 1446 - }, 1447 - "source": "hosted", 1448 - "version": "4.2.3" 1449 - }, 1450 - "petitparser": { 1451 - "dependency": "transitive", 1452 - "description": { 1453 - "name": "petitparser", 1454 - "sha256": "c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27", 1455 - "url": "https://pub.dev" 1456 - }, 1457 - "source": "hosted", 1458 - "version": "6.0.2" 1459 - }, 1460 - "platform": { 1461 - "dependency": "transitive", 1462 - "description": { 1463 - "name": "platform", 1464 - "sha256": "9b71283fc13df574056616011fb138fd3b793ea47cc509c189a6c3fa5f8a1a65", 1465 - "url": "https://pub.dev" 1466 - }, 1467 - "source": "hosted", 1468 - "version": "3.1.5" 1469 - }, 1470 - "plugin_platform_interface": { 1471 - "dependency": "transitive", 1472 - "description": { 1473 - "name": "plugin_platform_interface", 1474 - "sha256": "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02", 1475 - "url": "https://pub.dev" 1476 - }, 1477 - "source": "hosted", 1478 - "version": "2.1.8" 1479 - }, 1480 - "pointer_interceptor": { 1481 - "dependency": "transitive", 1482 - "description": { 1483 - "name": "pointer_interceptor", 1484 - "sha256": "57210410680379aea8b1b7ed6ae0c3ad349bfd56fe845b8ea934a53344b9d523", 1485 - "url": "https://pub.dev" 1486 - }, 1487 - "source": "hosted", 1488 - "version": "0.10.1+2" 1489 - }, 1490 - "pointer_interceptor_ios": { 1491 - "dependency": "transitive", 1492 - "description": { 1493 - "name": "pointer_interceptor_ios", 1494 - "sha256": "a6906772b3205b42c44614fcea28f818b1e5fdad73a4ca742a7bd49818d9c917", 1495 - "url": "https://pub.dev" 1496 - }, 1497 - "source": "hosted", 1498 - "version": "0.10.1" 1499 - }, 1500 - "pointer_interceptor_platform_interface": { 1501 - "dependency": "transitive", 1502 - "description": { 1503 - "name": "pointer_interceptor_platform_interface", 1504 - "sha256": "0597b0560e14354baeb23f8375cd612e8bd4841bf8306ecb71fcd0bb78552506", 1505 - "url": "https://pub.dev" 1506 - }, 1507 - "source": "hosted", 1508 - "version": "0.10.0+1" 1509 - }, 1510 - "pointer_interceptor_web": { 1511 - "dependency": "transitive", 1512 - "description": { 1513 - "name": "pointer_interceptor_web", 1514 - "sha256": "7a7087782110f8c1827170660b09f8aa893e0e9a61431dbbe2ac3fc482e8c044", 1515 - "url": "https://pub.dev" 1516 - }, 1517 - "source": "hosted", 1518 - "version": "0.10.2+1" 1519 - }, 1520 - "pool": { 1521 - "dependency": "transitive", 1522 - "description": { 1523 - "name": "pool", 1524 - "sha256": "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a", 1525 - "url": "https://pub.dev" 1526 - }, 1527 - "source": "hosted", 1528 - "version": "1.5.1" 1529 - }, 1530 - "posix": { 1531 - "dependency": "direct main", 1532 - "description": { 1533 - "name": "posix", 1534 - "sha256": "a0117dc2167805aa9125b82eee515cc891819bac2f538c83646d355b16f58b9a", 1535 - "url": "https://pub.dev" 1536 - }, 1537 - "source": "hosted", 1538 - "version": "6.0.1" 1539 - }, 1540 - "process": { 1541 - "dependency": "transitive", 1542 - "description": { 1543 - "name": "process", 1544 - "sha256": "21e54fd2faf1b5bdd5102afd25012184a6793927648ea81eea80552ac9405b32", 1545 - "url": "https://pub.dev" 1546 - }, 1547 - "source": "hosted", 1548 - "version": "5.0.2" 1549 - }, 1550 - "properties": { 1551 - "dependency": "transitive", 1552 - "description": { 1553 - "name": "properties", 1554 - "sha256": "333f427dd4ed07bdbe8c75b9ff864a1e70b5d7a8426a2e8bdd457b65ae5ac598", 1555 - "url": "https://pub.dev" 1556 - }, 1557 - "source": "hosted", 1558 - "version": "2.1.1" 1559 - }, 1560 - "protobuf": { 1561 - "dependency": "direct main", 1562 - "description": { 1563 - "name": "protobuf", 1564 - "sha256": "68645b24e0716782e58948f8467fd42a880f255096a821f9e7d0ec625b00c84d", 1565 - "url": "https://pub.dev" 1566 - }, 1567 - "source": "hosted", 1568 - "version": "3.1.0" 1569 - }, 1570 - "protocol_handler": { 1571 - "dependency": "direct main", 1572 - "description": { 1573 - "name": "protocol_handler", 1574 - "sha256": "dc2e2dcb1e0e313c3f43827ec3fa6d98adee6e17edc0c3923ac67efee87479a9", 1575 - "url": "https://pub.dev" 1576 - }, 1577 - "source": "hosted", 1578 - "version": "0.2.0" 1579 - }, 1580 - "protocol_handler_android": { 1581 - "dependency": "transitive", 1582 - "description": { 1583 - "name": "protocol_handler_android", 1584 - "sha256": "82eb860ca42149e400328f54b85140329a1766d982e94705b68271f6ca73895c", 1585 - "url": "https://pub.dev" 1586 - }, 1587 - "source": "hosted", 1588 - "version": "0.2.0" 1589 - }, 1590 - "protocol_handler_ios": { 1591 - "dependency": "transitive", 1592 - "description": { 1593 - "name": "protocol_handler_ios", 1594 - "sha256": "0d3a56b8c1926002cb1e32b46b56874759f4dcc8183d389b670864ac041b6ec2", 1595 - "url": "https://pub.dev" 1596 - }, 1597 - "source": "hosted", 1598 - "version": "0.2.0" 1599 - }, 1600 - "protocol_handler_macos": { 1601 - "dependency": "transitive", 1602 - "description": { 1603 - "name": "protocol_handler_macos", 1604 - "sha256": "6eb8687a84e7da3afbc5660ce046f29d7ecf7976db45a9dadeae6c87147dd710", 1605 - "url": "https://pub.dev" 1606 - }, 1607 - "source": "hosted", 1608 - "version": "0.2.0" 1609 - }, 1610 - "protocol_handler_platform_interface": { 1611 - "dependency": "transitive", 1612 - "description": { 1613 - "name": "protocol_handler_platform_interface", 1614 - "sha256": "53776b10526fdc25efdf1abcf68baf57fdfdb75342f4101051db521c9e3f3e5b", 1615 - "url": "https://pub.dev" 1616 - }, 1617 - "source": "hosted", 1618 - "version": "0.2.0" 1619 - }, 1620 - "protocol_handler_windows": { 1621 - "dependency": "transitive", 1622 - "description": { 1623 - "name": "protocol_handler_windows", 1624 - "sha256": "d8f3a58938386aca2c76292757392f4d059d09f11439d6d896d876ebe997f2c4", 1625 - "url": "https://pub.dev" 1626 - }, 1627 - "source": "hosted", 1628 - "version": "0.2.0" 1629 - }, 1630 - "pub_semver": { 1631 - "dependency": "transitive", 1632 - "description": { 1633 - "name": "pub_semver", 1634 - "sha256": "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c", 1635 - "url": "https://pub.dev" 1636 - }, 1637 - "source": "hosted", 1638 - "version": "2.1.4" 1639 - }, 1640 - "pubspec_parse": { 1641 - "dependency": "transitive", 1642 - "description": { 1643 - "name": "pubspec_parse", 1644 - "sha256": "c799b721d79eb6ee6fa56f00c04b472dcd44a30d258fac2174a6ec57302678f8", 1645 - "url": "https://pub.dev" 1646 - }, 1647 - "source": "hosted", 1648 - "version": "1.3.0" 1649 - }, 1650 - "qr": { 1651 - "dependency": "transitive", 1652 - "description": { 1653 - "name": "qr", 1654 - "sha256": "5a1d2586170e172b8a8c8470bbbffd5eb0cd38a66c0d77155ea138d3af3a4445", 1655 - "url": "https://pub.dev" 1656 - }, 1657 - "source": "hosted", 1658 - "version": "3.0.2" 1659 - }, 1660 - "qr_flutter": { 1661 - "dependency": "direct main", 1662 - "description": { 1663 - "name": "qr_flutter", 1664 - "sha256": "5095f0fc6e3f71d08adef8feccc8cea4f12eec18a2e31c2e8d82cb6019f4b097", 1665 - "url": "https://pub.dev" 1666 - }, 1667 - "source": "hosted", 1668 - "version": "4.1.0" 1669 - }, 1670 - "quiver": { 1671 - "dependency": "transitive", 1672 - "description": { 1673 - "name": "quiver", 1674 - "sha256": "b1c1ac5ce6688d77f65f3375a9abb9319b3cb32486bdc7a1e0fdf004d7ba4e47", 1675 - "url": "https://pub.dev" 1676 - }, 1677 - "source": "hosted", 1678 - "version": "3.2.1" 1679 - }, 1680 - "rational": { 1681 - "dependency": "transitive", 1682 - "description": { 1683 - "name": "rational", 1684 - "sha256": "cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336", 1685 - "url": "https://pub.dev" 1686 - }, 1687 - "source": "hosted", 1688 - "version": "2.2.3" 1689 - }, 1690 - "recase": { 1691 - "dependency": "transitive", 1692 - "description": { 1693 - "name": "recase", 1694 - "sha256": "e4eb4ec2dcdee52dcf99cb4ceabaffc631d7424ee55e56f280bc039737f89213", 1695 - "url": "https://pub.dev" 1696 - }, 1697 - "source": "hosted", 1698 - "version": "4.1.0" 1699 - }, 1700 - "retry": { 1701 - "dependency": "transitive", 1702 - "description": { 1703 - "name": "retry", 1704 - "sha256": "822e118d5b3aafed083109c72d5f484c6dc66707885e07c0fbcb8b986bba7efc", 1705 - "url": "https://pub.dev" 1706 - }, 1707 - "source": "hosted", 1708 - "version": "3.1.2" 1709 - }, 1710 - "rfc_6901": { 1711 - "dependency": "transitive", 1712 - "description": { 1713 - "name": "rfc_6901", 1714 - "sha256": "df1bbfa3d023009598f19636d6114c6ac1e0b7bb7bf6a260f0e6e6ce91416820", 1715 - "url": "https://pub.dev" 1716 - }, 1717 - "source": "hosted", 1718 - "version": "0.2.0" 1719 - }, 1720 - "riverpod": { 1721 - "dependency": "transitive", 1722 - "description": { 1723 - "name": "riverpod", 1724 - "sha256": "f21b32ffd26a36555e501b04f4a5dca43ed59e16343f1a30c13632b2351dfa4d", 1725 - "url": "https://pub.dev" 1726 - }, 1727 - "source": "hosted", 1728 - "version": "2.5.1" 1729 - }, 1730 - "riverpod_analyzer_utils": { 1731 - "dependency": "transitive", 1732 - "description": { 1733 - "name": "riverpod_analyzer_utils", 1734 - "sha256": "8b71f03fc47ae27d13769496a1746332df4cec43918aeba9aff1e232783a780f", 1735 - "url": "https://pub.dev" 1736 - }, 1737 - "source": "hosted", 1738 - "version": "0.5.1" 1739 - }, 1740 - "riverpod_annotation": { 1741 - "dependency": "direct main", 1742 - "description": { 1743 - "name": "riverpod_annotation", 1744 - "sha256": "e5e796c0eba4030c704e9dae1b834a6541814963292839dcf9638d53eba84f5c", 1745 - "url": "https://pub.dev" 1746 - }, 1747 - "source": "hosted", 1748 - "version": "2.3.5" 1749 - }, 1750 - "riverpod_generator": { 1751 - "dependency": "direct dev", 1752 - "description": { 1753 - "name": "riverpod_generator", 1754 - "sha256": "d451608bf17a372025fc36058863737636625dfdb7e3cbf6142e0dfeb366ab22", 1755 - "url": "https://pub.dev" 1756 - }, 1757 - "source": "hosted", 1758 - "version": "2.4.0" 1759 - }, 1760 - "rxdart": { 1761 - "dependency": "direct main", 1762 - "description": { 1763 - "name": "rxdart", 1764 - "sha256": "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb", 1765 - "url": "https://pub.dev" 1766 - }, 1767 - "source": "hosted", 1768 - "version": "0.27.7" 1769 - }, 1770 - "screen_retriever": { 1771 - "dependency": "transitive", 1772 - "description": { 1773 - "name": "screen_retriever", 1774 - "sha256": "6ee02c8a1158e6dae7ca430da79436e3b1c9563c8cf02f524af997c201ac2b90", 1775 - "url": "https://pub.dev" 1776 - }, 1777 - "source": "hosted", 1778 - "version": "0.1.9" 1779 - }, 1780 - "sentry": { 1781 - "dependency": "transitive", 1782 - "description": { 1783 - "name": "sentry", 1784 - "sha256": "57514bc72d441ffdc463f498d6886aa586a2494fa467a1eb9d649c28010d7ee3", 1785 - "url": "https://pub.dev" 1786 - }, 1787 - "source": "hosted", 1788 - "version": "7.20.2" 1789 - }, 1790 - "sentry_dart_plugin": { 1791 - "dependency": "direct main", 1792 - "description": { 1793 - "name": "sentry_dart_plugin", 1794 - "sha256": "e81fa3e0ffabd04fdcfbfecd6468d4a342f02ab33edca09708c61bcd2be42b7d", 1795 - "url": "https://pub.dev" 1796 - }, 1797 - "source": "hosted", 1798 - "version": "1.7.1" 1799 - }, 1800 - "sentry_flutter": { 1801 - "dependency": "direct main", 1802 - "description": { 1803 - "name": "sentry_flutter", 1804 - "sha256": "9723d58470ca43a360681ddd26abb71ca7b815f706bc8d3747afd054cf639ded", 1805 - "url": "https://pub.dev" 1806 - }, 1807 - "source": "hosted", 1808 - "version": "7.20.2" 1809 - }, 1810 - "share_plus": { 1811 - "dependency": "direct main", 1812 - "description": { 1813 - "name": "share_plus", 1814 - "sha256": "3ef39599b00059db0990ca2e30fca0a29d8b37aae924d60063f8e0184cf20900", 1815 - "url": "https://pub.dev" 1816 - }, 1817 - "source": "hosted", 1818 - "version": "7.2.2" 1819 - }, 1820 - "share_plus_platform_interface": { 1821 - "dependency": "transitive", 1822 - "description": { 1823 - "name": "share_plus_platform_interface", 1824 - "sha256": "251eb156a8b5fa9ce033747d73535bf53911071f8d3b6f4f0b578505ce0d4496", 1825 - "url": "https://pub.dev" 1826 - }, 1827 - "source": "hosted", 1828 - "version": "3.4.0" 1829 - }, 1830 - "shared_preferences": { 1831 - "dependency": "direct main", 1832 - "description": { 1833 - "name": "shared_preferences", 1834 - "sha256": "c272f9cabca5a81adc9b0894381e9c1def363e980f960fa903c604c471b22f68", 1835 - "url": "https://pub.dev" 1836 - }, 1837 - "source": "hosted", 1838 - "version": "2.3.1" 1839 - }, 1840 - "shared_preferences_android": { 1841 - "dependency": "transitive", 1842 - "description": { 1843 - "name": "shared_preferences_android", 1844 - "sha256": "a7e8467e9181cef109f601e3f65765685786c1a738a83d7fbbde377589c0d974", 1845 - "url": "https://pub.dev" 1846 - }, 1847 - "source": "hosted", 1848 - "version": "2.3.1" 1849 - }, 1850 - "shared_preferences_foundation": { 1851 - "dependency": "transitive", 1852 - "description": { 1853 - "name": "shared_preferences_foundation", 1854 - "sha256": "776786cff96324851b656777648f36ac772d88bc4c669acff97b7fce5de3c849", 1855 - "url": "https://pub.dev" 1856 - }, 1857 - "source": "hosted", 1858 - "version": "2.5.1" 1859 - }, 1860 - "shared_preferences_linux": { 1861 - "dependency": "transitive", 1862 - "description": { 1863 - "name": "shared_preferences_linux", 1864 - "sha256": "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f", 1865 - "url": "https://pub.dev" 1866 - }, 1867 - "source": "hosted", 1868 - "version": "2.4.1" 1869 - }, 1870 - "shared_preferences_platform_interface": { 1871 - "dependency": "transitive", 1872 - "description": { 1873 - "name": "shared_preferences_platform_interface", 1874 - "sha256": "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80", 1875 - "url": "https://pub.dev" 1876 - }, 1877 - "source": "hosted", 1878 - "version": "2.4.1" 1879 - }, 1880 - "shared_preferences_web": { 1881 - "dependency": "transitive", 1882 - "description": { 1883 - "name": "shared_preferences_web", 1884 - "sha256": "d2ca4132d3946fec2184261726b355836a82c33d7d5b67af32692aff18a4684e", 1885 - "url": "https://pub.dev" 1886 - }, 1887 - "source": "hosted", 1888 - "version": "2.4.2" 1889 - }, 1890 - "shared_preferences_windows": { 1891 - "dependency": "transitive", 1892 - "description": { 1893 - "name": "shared_preferences_windows", 1894 - "sha256": "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1", 1895 - "url": "https://pub.dev" 1896 - }, 1897 - "source": "hosted", 1898 - "version": "2.4.1" 1899 - }, 1900 - "shelf": { 1901 - "dependency": "transitive", 1902 - "description": { 1903 - "name": "shelf", 1904 - "sha256": "ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4", 1905 - "url": "https://pub.dev" 1906 - }, 1907 - "source": "hosted", 1908 - "version": "1.4.1" 1909 - }, 1910 - "shelf_web_socket": { 1911 - "dependency": "transitive", 1912 - "description": { 1913 - "name": "shelf_web_socket", 1914 - "sha256": "073c147238594ecd0d193f3456a5fe91c4b0abbcc68bf5cd95b36c4e194ac611", 1915 - "url": "https://pub.dev" 1916 - }, 1917 - "source": "hosted", 1918 - "version": "2.0.0" 1919 - }, 1920 - "shortid": { 1921 - "dependency": "transitive", 1922 - "description": { 1923 - "name": "shortid", 1924 - "sha256": "d0b40e3dbb50497dad107e19c54ca7de0d1a274eb9b4404991e443dadb9ebedb", 1925 - "url": "https://pub.dev" 1926 - }, 1927 - "source": "hosted", 1928 - "version": "0.1.2" 1929 - }, 1930 - "sky_engine": { 1931 - "dependency": "transitive", 1932 - "description": "flutter", 1933 - "source": "sdk", 1934 - "version": "0.0.99" 1935 - }, 1936 - "slang": { 1937 - "dependency": "direct main", 1938 - "description": { 1939 - "name": "slang", 1940 - "sha256": "f68f6d6709890f85efabfb0318e9d694be2ebdd333e57fe5cb50eee449e4e3ab", 1941 - "url": "https://pub.dev" 1942 - }, 1943 - "source": "hosted", 1944 - "version": "3.31.1" 1945 - }, 1946 - "slang_build_runner": { 1947 - "dependency": "direct dev", 1948 - "description": { 1949 - "name": "slang_build_runner", 1950 - "sha256": "6e60160e8000b91824c47221b20d9642e7408287a5a21837ecefc75270197586", 1951 - "url": "https://pub.dev" 1952 - }, 1953 - "source": "hosted", 1954 - "version": "3.31.0" 1955 - }, 1956 - "slang_flutter": { 1957 - "dependency": "direct main", 1958 - "description": { 1959 - "name": "slang_flutter", 1960 - "sha256": "f8400292be49c11697d94af58d7f7d054c91af759f41ffe71e4e5413871ffc62", 1961 - "url": "https://pub.dev" 1962 - }, 1963 - "source": "hosted", 1964 - "version": "3.31.0" 1965 - }, 1966 - "sliver_tools": { 1967 - "dependency": "direct main", 1968 - "description": { 1969 - "name": "sliver_tools", 1970 - "sha256": "eae28220badfb9d0559207badcbbc9ad5331aac829a88cb0964d330d2a4636a6", 1971 - "url": "https://pub.dev" 1972 - }, 1973 - "source": "hosted", 1974 - "version": "0.2.12" 1975 - }, 1976 - "slugid": { 1977 - "dependency": "transitive", 1978 - "description": { 1979 - "name": "slugid", 1980 - "sha256": "e0cc54637b666c9c590f0d76df76e5e2bbf6234ae398a182aac82fd70ddd60ab", 1981 - "url": "https://pub.dev" 1982 - }, 1983 - "source": "hosted", 1984 - "version": "1.1.2" 1985 - }, 1986 - "source_gen": { 1987 - "dependency": "transitive", 1988 - "description": { 1989 - "name": "source_gen", 1990 - "sha256": "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832", 1991 - "url": "https://pub.dev" 1992 - }, 1993 - "source": "hosted", 1994 - "version": "1.5.0" 1995 - }, 1996 - "source_helper": { 1997 - "dependency": "transitive", 1998 - "description": { 1999 - "name": "source_helper", 2000 - "sha256": "6adebc0006c37dd63fe05bca0a929b99f06402fc95aa35bf36d67f5c06de01fd", 2001 - "url": "https://pub.dev" 2002 - }, 2003 - "source": "hosted", 2004 - "version": "1.3.4" 2005 - }, 2006 - "source_span": { 2007 - "dependency": "transitive", 2008 - "description": { 2009 - "name": "source_span", 2010 - "sha256": "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c", 2011 - "url": "https://pub.dev" 2012 - }, 2013 - "source": "hosted", 2014 - "version": "1.10.0" 2015 - }, 2016 - "sprintf": { 2017 - "dependency": "transitive", 2018 - "description": { 2019 - "name": "sprintf", 2020 - "sha256": "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23", 2021 - "url": "https://pub.dev" 2022 - }, 2023 - "source": "hosted", 2024 - "version": "7.0.0" 2025 - }, 2026 - "sqlite3": { 2027 - "dependency": "transitive", 2028 - "description": { 2029 - "name": "sqlite3", 2030 - "sha256": "fde692580bee3379374af1f624eb3e113ab2865ecb161dbe2d8ac2de9735dbdb", 2031 - "url": "https://pub.dev" 2032 - }, 2033 - "source": "hosted", 2034 - "version": "2.4.5" 2035 - }, 2036 - "sqlite3_flutter_libs": { 2037 - "dependency": "direct main", 2038 - "description": { 2039 - "name": "sqlite3_flutter_libs", 2040 - "sha256": "62bbb4073edbcdf53f40c80775f33eea01d301b7b81417e5b3fb7395416258c1", 2041 - "url": "https://pub.dev" 2042 - }, 2043 - "source": "hosted", 2044 - "version": "0.5.24" 2045 - }, 2046 - "sqlparser": { 2047 - "dependency": "transitive", 2048 - "description": { 2049 - "name": "sqlparser", 2050 - "sha256": "3be52b4968fc2f098ba735863404756d2fe3ea0729cf006a5b5612618f74ca04", 2051 - "url": "https://pub.dev" 2052 - }, 2053 - "source": "hosted", 2054 - "version": "0.37.1" 2055 - }, 2056 - "stack_trace": { 2057 - "dependency": "transitive", 2058 - "description": { 2059 - "name": "stack_trace", 2060 - "sha256": "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b", 2061 - "url": "https://pub.dev" 2062 - }, 2063 - "source": "hosted", 2064 - "version": "1.11.1" 2065 - }, 2066 - "state_notifier": { 2067 - "dependency": "transitive", 2068 - "description": { 2069 - "name": "state_notifier", 2070 - "sha256": "b8677376aa54f2d7c58280d5a007f9e8774f1968d1fb1c096adcb4792fba29bb", 2071 - "url": "https://pub.dev" 2072 - }, 2073 - "source": "hosted", 2074 - "version": "1.0.0" 2075 - }, 2076 - "stream_channel": { 2077 - "dependency": "transitive", 2078 - "description": { 2079 - "name": "stream_channel", 2080 - "sha256": "ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7", 2081 - "url": "https://pub.dev" 2082 - }, 2083 - "source": "hosted", 2084 - "version": "2.1.2" 2085 - }, 2086 - "stream_transform": { 2087 - "dependency": "transitive", 2088 - "description": { 2089 - "name": "stream_transform", 2090 - "sha256": "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f", 2091 - "url": "https://pub.dev" 2092 - }, 2093 - "source": "hosted", 2094 - "version": "2.1.0" 2095 - }, 2096 - "string_scanner": { 2097 - "dependency": "transitive", 2098 - "description": { 2099 - "name": "string_scanner", 2100 - "sha256": "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde", 2101 - "url": "https://pub.dev" 2102 - }, 2103 - "source": "hosted", 2104 - "version": "1.2.0" 2105 - }, 2106 - "system_info2": { 2107 - "dependency": "transitive", 2108 - "description": { 2109 - "name": "system_info2", 2110 - "sha256": "65206bbef475217008b5827374767550a5420ce70a04d2d7e94d1d2253f3efc9", 2111 - "url": "https://pub.dev" 2112 - }, 2113 - "source": "hosted", 2114 - "version": "4.0.0" 2115 - }, 2116 - "term_glyph": { 2117 - "dependency": "transitive", 2118 - "description": { 2119 - "name": "term_glyph", 2120 - "sha256": "a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84", 2121 - "url": "https://pub.dev" 2122 - }, 2123 - "source": "hosted", 2124 - "version": "1.2.1" 2125 - }, 2126 - "test_api": { 2127 - "dependency": "transitive", 2128 - "description": { 2129 - "name": "test_api", 2130 - "sha256": "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb", 2131 - "url": "https://pub.dev" 2132 - }, 2133 - "source": "hosted", 2134 - "version": "0.7.2" 2135 - }, 2136 - "time": { 2137 - "dependency": "transitive", 2138 - "description": { 2139 - "name": "time", 2140 - "sha256": "ad8e018a6c9db36cb917a031853a1aae49467a93e0d464683e029537d848c221", 2141 - "url": "https://pub.dev" 2142 - }, 2143 - "source": "hosted", 2144 - "version": "2.1.4" 2145 - }, 2146 - "timezone": { 2147 - "dependency": "transitive", 2148 - "description": { 2149 - "name": "timezone", 2150 - "sha256": "2236ec079a174ce07434e89fcd3fcda430025eb7692244139a9cf54fdcf1fc7d", 2151 - "url": "https://pub.dev" 2152 - }, 2153 - "source": "hosted", 2154 - "version": "0.9.4" 2155 - }, 2156 - "timezone_to_country": { 2157 - "dependency": "direct main", 2158 - "description": { 2159 - "name": "timezone_to_country", 2160 - "sha256": "3dc8480ff450910d97555a26a19cb278fb68b69d24246fffadbc5390165457a1", 2161 - "url": "https://pub.dev" 2162 - }, 2163 - "source": "hosted", 2164 - "version": "2.2.0" 2165 - }, 2166 - "timing": { 2167 - "dependency": "transitive", 2168 - "description": { 2169 - "name": "timing", 2170 - "sha256": "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32", 2171 - "url": "https://pub.dev" 2172 - }, 2173 - "source": "hosted", 2174 - "version": "1.0.1" 2175 - }, 2176 - "tint": { 2177 - "dependency": "direct main", 2178 - "description": { 2179 - "name": "tint", 2180 - "sha256": "9652d9a589f4536d5e392cf790263d120474f15da3cf1bee7f1fdb31b4de5f46", 2181 - "url": "https://pub.dev" 2182 - }, 2183 - "source": "hosted", 2184 - "version": "2.0.1" 2185 - }, 2186 - "toastification": { 2187 - "dependency": "direct main", 2188 - "description": { 2189 - "name": "toastification", 2190 - "sha256": "1e01495fe00b8fddce8a7f1da5e4775cd003763698e8363d7122bea4168a395e", 2191 - "url": "https://pub.dev" 2192 - }, 2193 - "source": "hosted", 2194 - "version": "1.2.1" 2195 - }, 2196 - "tray_manager": { 2197 - "dependency": "direct main", 2198 - "description": { 2199 - "name": "tray_manager", 2200 - "sha256": "c9a63fd88bd3546287a7eb8ccc978d707eef82c775397af17dda3a4f4c039e64", 2201 - "url": "https://pub.dev" 2202 - }, 2203 - "source": "hosted", 2204 - "version": "0.2.3" 2205 - }, 2206 - "type_plus": { 2207 - "dependency": "transitive", 2208 - "description": { 2209 - "name": "type_plus", 2210 - "sha256": "d5d1019471f0d38b91603adb9b5fd4ce7ab903c879d2fbf1a3f80a630a03fcc9", 2211 - "url": "https://pub.dev" 2212 - }, 2213 - "source": "hosted", 2214 - "version": "2.1.1" 2215 - }, 2216 - "typed_data": { 2217 - "dependency": "transitive", 2218 - "description": { 2219 - "name": "typed_data", 2220 - "sha256": "facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c", 2221 - "url": "https://pub.dev" 2222 - }, 2223 - "source": "hosted", 2224 - "version": "1.3.2" 2225 - }, 2226 - "universal_io": { 2227 - "dependency": "transitive", 2228 - "description": { 2229 - "name": "universal_io", 2230 - "sha256": "1722b2dcc462b4b2f3ee7d188dad008b6eb4c40bbd03a3de451d82c78bba9aad", 2231 - "url": "https://pub.dev" 2232 - }, 2233 - "source": "hosted", 2234 - "version": "2.2.2" 2235 - }, 2236 - "upgrader": { 2237 - "dependency": "direct main", 2238 - "description": { 2239 - "name": "upgrader", 2240 - "sha256": "0c5fe8101b9d3017aebcb5175b49c382699725ffcf477afbe93fc3351491f6e8", 2241 - "url": "https://pub.dev" 2242 - }, 2243 - "source": "hosted", 2244 - "version": "9.0.0" 2245 - }, 2246 - "url_launcher": { 2247 - "dependency": "direct main", 2248 - "description": { 2249 - "name": "url_launcher", 2250 - "sha256": "21b704ce5fa560ea9f3b525b43601c678728ba46725bab9b01187b4831377ed3", 2251 - "url": "https://pub.dev" 2252 - }, 2253 - "source": "hosted", 2254 - "version": "6.3.0" 2255 - }, 2256 - "url_launcher_android": { 2257 - "dependency": "transitive", 2258 - "description": { 2259 - "name": "url_launcher_android", 2260 - "sha256": "94d8ad05f44c6d4e2ffe5567ab4d741b82d62e3c8e288cc1fcea45965edf47c9", 2261 - "url": "https://pub.dev" 2262 - }, 2263 - "source": "hosted", 2264 - "version": "6.3.8" 2265 - }, 2266 - "url_launcher_ios": { 2267 - "dependency": "transitive", 2268 - "description": { 2269 - "name": "url_launcher_ios", 2270 - "sha256": "e43b677296fadce447e987a2f519dcf5f6d1e527dc35d01ffab4fff5b8a7063e", 2271 - "url": "https://pub.dev" 2272 - }, 2273 - "source": "hosted", 2274 - "version": "6.3.1" 2275 - }, 2276 - "url_launcher_linux": { 2277 - "dependency": "transitive", 2278 - "description": { 2279 - "name": "url_launcher_linux", 2280 - "sha256": "e2b9622b4007f97f504cd64c0128309dfb978ae66adbe944125ed9e1750f06af", 2281 - "url": "https://pub.dev" 2282 - }, 2283 - "source": "hosted", 2284 - "version": "3.2.0" 2285 - }, 2286 - "url_launcher_macos": { 2287 - "dependency": "transitive", 2288 - "description": { 2289 - "name": "url_launcher_macos", 2290 - "sha256": "9a1a42d5d2d95400c795b2914c36fdcb525870c752569438e4ebb09a2b5d90de", 2291 - "url": "https://pub.dev" 2292 - }, 2293 - "source": "hosted", 2294 - "version": "3.2.0" 2295 - }, 2296 - "url_launcher_platform_interface": { 2297 - "dependency": "transitive", 2298 - "description": { 2299 - "name": "url_launcher_platform_interface", 2300 - "sha256": "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029", 2301 - "url": "https://pub.dev" 2302 - }, 2303 - "source": "hosted", 2304 - "version": "2.3.2" 2305 - }, 2306 - "url_launcher_web": { 2307 - "dependency": "transitive", 2308 - "description": { 2309 - "name": "url_launcher_web", 2310 - "sha256": "772638d3b34c779ede05ba3d38af34657a05ac55b06279ea6edd409e323dca8e", 2311 - "url": "https://pub.dev" 2312 - }, 2313 - "source": "hosted", 2314 - "version": "2.3.3" 2315 - }, 2316 - "url_launcher_windows": { 2317 - "dependency": "transitive", 2318 - "description": { 2319 - "name": "url_launcher_windows", 2320 - "sha256": "49c10f879746271804767cb45551ec5592cdab00ee105c06dddde1a98f73b185", 2321 - "url": "https://pub.dev" 2322 - }, 2323 - "source": "hosted", 2324 - "version": "3.1.2" 2325 - }, 2326 - "uuid": { 2327 - "dependency": "direct main", 2328 - "description": { 2329 - "name": "uuid", 2330 - "sha256": "83d37c7ad7aaf9aa8e275490669535c8080377cfa7a7004c24dfac53afffaa90", 2331 - "url": "https://pub.dev" 2332 - }, 2333 - "source": "hosted", 2334 - "version": "4.4.2" 2335 - }, 2336 - "vclibs": { 2337 - "dependency": "direct main", 2338 - "description": { 2339 - "name": "vclibs", 2340 - "sha256": "5dc5de54fabe27ad276898b7c04a56a4a3dd9834e479b9db5e04a9f3eb36790e", 2341 - "url": "https://pub.dev" 2342 - }, 2343 - "source": "hosted", 2344 - "version": "0.1.3" 2345 - }, 2346 - "vector_graphics": { 2347 - "dependency": "transitive", 2348 - "description": { 2349 - "name": "vector_graphics", 2350 - "sha256": "32c3c684e02f9bc0afb0ae0aa653337a2fe022e8ab064bcd7ffda27a74e288e3", 2351 - "url": "https://pub.dev" 2352 - }, 2353 - "source": "hosted", 2354 - "version": "1.1.11+1" 2355 - }, 2356 - "vector_graphics_codec": { 2357 - "dependency": "transitive", 2358 - "description": { 2359 - "name": "vector_graphics_codec", 2360 - "sha256": "c86987475f162fadff579e7320c7ddda04cd2fdeffbe1129227a85d9ac9e03da", 2361 - "url": "https://pub.dev" 2362 - }, 2363 - "source": "hosted", 2364 - "version": "1.1.11+1" 2365 - }, 2366 - "vector_graphics_compiler": { 2367 - "dependency": "transitive", 2368 - "description": { 2369 - "name": "vector_graphics_compiler", 2370 - "sha256": "12faff3f73b1741a36ca7e31b292ddeb629af819ca9efe9953b70bd63fc8cd81", 2371 - "url": "https://pub.dev" 2372 - }, 2373 - "source": "hosted", 2374 - "version": "1.1.11+1" 2375 - }, 2376 - "vector_math": { 2377 - "dependency": "transitive", 2378 - "description": { 2379 - "name": "vector_math", 2380 - "sha256": "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803", 2381 - "url": "https://pub.dev" 2382 - }, 2383 - "source": "hosted", 2384 - "version": "2.1.4" 2385 - }, 2386 - "version": { 2387 - "dependency": "direct main", 2388 - "description": { 2389 - "name": "version", 2390 - "sha256": "3d4140128e6ea10d83da32fef2fa4003fccbf6852217bb854845802f04191f94", 2391 - "url": "https://pub.dev" 2392 - }, 2393 - "source": "hosted", 2394 - "version": "3.0.2" 2395 - }, 2396 - "vm_service": { 2397 - "dependency": "transitive", 2398 - "description": { 2399 - "name": "vm_service", 2400 - "sha256": "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d", 2401 - "url": "https://pub.dev" 2402 - }, 2403 - "source": "hosted", 2404 - "version": "14.2.5" 2405 - }, 2406 - "watcher": { 2407 - "dependency": "direct main", 2408 - "description": { 2409 - "name": "watcher", 2410 - "sha256": "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8", 2411 - "url": "https://pub.dev" 2412 - }, 2413 - "source": "hosted", 2414 - "version": "1.1.0" 2415 - }, 2416 - "web": { 2417 - "dependency": "direct overridden", 2418 - "description": { 2419 - "name": "web", 2420 - "sha256": "d43c1d6b787bf0afad444700ae7f4db8827f701bc61c255ac8d328c6f4d52062", 2421 - "url": "https://pub.dev" 2422 - }, 2423 - "source": "hosted", 2424 - "version": "1.0.0" 2425 - }, 2426 - "web_socket": { 2427 - "dependency": "transitive", 2428 - "description": { 2429 - "name": "web_socket", 2430 - "sha256": "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83", 2431 - "url": "https://pub.dev" 2432 - }, 2433 - "source": "hosted", 2434 - "version": "0.1.6" 2435 - }, 2436 - "web_socket_channel": { 2437 - "dependency": "transitive", 2438 - "description": { 2439 - "name": "web_socket_channel", 2440 - "sha256": "9f187088ed104edd8662ca07af4b124465893caf063ba29758f97af57e61da8f", 2441 - "url": "https://pub.dev" 2442 - }, 2443 - "source": "hosted", 2444 - "version": "3.0.1" 2445 - }, 2446 - "win32": { 2447 - "dependency": "direct main", 2448 - "description": { 2449 - "name": "win32", 2450 - "sha256": "015002c060f1ae9f41a818f2d5640389cc05283e368be19dc8d77cecb43c40c9", 2451 - "url": "https://pub.dev" 2452 - }, 2453 - "source": "hosted", 2454 - "version": "5.5.3" 2455 - }, 2456 - "win32_registry": { 2457 - "dependency": "transitive", 2458 - "description": { 2459 - "name": "win32_registry", 2460 - "sha256": "723b7f851e5724c55409bb3d5a32b203b3afe8587eaf5dafb93a5fed8ecda0d6", 2461 - "url": "https://pub.dev" 2462 - }, 2463 - "source": "hosted", 2464 - "version": "1.1.4" 2465 - }, 2466 - "window_manager": { 2467 - "dependency": "direct main", 2468 - "description": { 2469 - "name": "window_manager", 2470 - "sha256": "8699323b30da4cdbe2aa2e7c9de567a6abd8a97d9a5c850a3c86dcd0b34bbfbf", 2471 - "url": "https://pub.dev" 2472 - }, 2473 - "source": "hosted", 2474 - "version": "0.3.9" 2475 - }, 2476 - "wolt_modal_sheet": { 2477 - "dependency": "direct main", 2478 - "description": { 2479 - "name": "wolt_modal_sheet", 2480 - "sha256": "0a04f1a11bbeeb4847bdea17707ab68fffaaa656a5ce75323939647952d696c4", 2481 - "url": "https://pub.dev" 2482 - }, 2483 - "source": "hosted", 2484 - "version": "0.4.1" 2485 - }, 2486 - "xdg_directories": { 2487 - "dependency": "transitive", 2488 - "description": { 2489 - "name": "xdg_directories", 2490 - "sha256": "faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d", 2491 - "url": "https://pub.dev" 2492 - }, 2493 - "source": "hosted", 2494 - "version": "1.0.4" 2495 - }, 2496 - "xml": { 2497 - "dependency": "transitive", 2498 - "description": { 2499 - "name": "xml", 2500 - "sha256": "b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226", 2501 - "url": "https://pub.dev" 2502 - }, 2503 - "source": "hosted", 2504 - "version": "6.5.0" 2505 - }, 2506 - "yaml": { 2507 - "dependency": "transitive", 2508 - "description": { 2509 - "name": "yaml", 2510 - "sha256": "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5", 2511 - "url": "https://pub.dev" 2512 - }, 2513 - "source": "hosted", 2514 - "version": "3.1.2" 2515 - }, 2516 - "yaml_edit": { 2517 - "dependency": "transitive", 2518 - "description": { 2519 - "name": "yaml_edit", 2520 - "sha256": "e9c1a3543d2da0db3e90270dbb1e4eebc985ee5e3ffe468d83224472b2194a5f", 2521 - "url": "https://pub.dev" 2522 - }, 2523 - "source": "hosted", 2524 - "version": "2.2.1" 2525 - } 2526 - }, 2527 - "sdks": { 2528 - "dart": ">=3.4.0 <4.0.0", 2529 - "flutter": ">=3.24.0" 2530 - } 2531 - }
+1
pkgs/top-level/aliases.nix
··· 1082 1082 haven-cli = throw "'haven-cli' has been removed due to the official announcement of the project closure. Read more at https://havenprotocol.org/2024/12/12/project-closure-announcement"; # Added 2025-02-25 1083 1083 hawknl = throw "'hawknl' has been removed as it was unmaintained and the upstream unavailable"; # Added 2025-05-07 1084 1084 HentaiAtHome = hentai-at-home; # Added 2024-06-12 1085 + hiddify-app = throw "hiddify-app has been removed, since it is unmaintained"; # added 2025-08-20 1085 1086 hll2390dw-cups = throw "The hll2390dw-cups package was dropped since it was unmaintained."; # Added 2024-06-21 1086 1087 hoarder = throw "'hoarder' has been renamed to 'karakeep'"; # Added 2025-04-21 1087 1088 hmetis = throw "'hmetis' has been removed as it was unmaintained and the upstream was unavailable"; # Added 2025-05-05