From 2dfa12265878097977ef12f43b39de7cde63e7b1 Mon Sep 17 00:00:00 2001 From: Marcin Wojnarowski Date: Fri, 17 Nov 2023 20:12:22 +0100 Subject: [PATCH] Upgrade all packages to leancode_lint v7 (#213) --- .github/workflows/cqrs-test.yml | 4 +- ...ncode_flutter_svg_adaptive_loader-test.yml | 4 +- .github/workflows/leancode_hooks-test.yml | 4 +- .github/workflows/login_client-test.yml | 4 +- .../workflows/login_client_flutter-test.yml | 4 +- .../workflows/override_api_endpoint-test.yml | 4 +- .gitignore | 3 +- packages/cqrs/analysis_options.yaml | 2 + packages/cqrs/lib/src/cqrs.dart | 36 +- packages/cqrs/pubspec.yaml | 3 +- packages/debug_page/analysis_options.yaml | 4 + packages/debug_page/pubspec.yaml | 5 +- .../leancode_analytics/analysis_options.yaml | 4 + packages/leancode_analytics/pubspec.yaml | 4 +- .../analysis_options.yaml | 4 + .../example/pubspec.lock | 2 +- .../pubspec.yaml | 3 +- packages/leancode_hooks/analysis_options.yaml | 4 + packages/leancode_hooks/pubspec.yaml | 3 +- .../test/lints_test_app/pubspec.lock | 2 +- packages/login_client/analysis_options.yaml | 2 + packages/login_client/pubspec.yaml | 3 +- .../analysis_options.yaml | 4 + packages/login_client_flutter/pubspec.yaml | 3 +- .../analysis_options.yaml | 4 + packages/override_api_endpoint/pubspec.yaml | 3 +- pubspec.lock | 317 ++++++++++++++++++ 27 files changed, 402 insertions(+), 37 deletions(-) create mode 100644 pubspec.lock diff --git a/.github/workflows/cqrs-test.yml b/.github/workflows/cqrs-test.yml index b6e92fe2..72928367 100644 --- a/.github/workflows/cqrs-test.yml +++ b/.github/workflows/cqrs-test.yml @@ -48,7 +48,9 @@ jobs: run: dart pub get - name: Run analyzer - run: dart analyze + run: | + dart analyze + dart run custom_lint - name: Run tests with coverage run: | diff --git a/.github/workflows/leancode_flutter_svg_adaptive_loader-test.yml b/.github/workflows/leancode_flutter_svg_adaptive_loader-test.yml index 8cf5a64d..dce7d359 100644 --- a/.github/workflows/leancode_flutter_svg_adaptive_loader-test.yml +++ b/.github/workflows/leancode_flutter_svg_adaptive_loader-test.yml @@ -50,7 +50,9 @@ jobs: run: flutter pub get - name: Run analyzer - run: flutter analyze + run: | + flutter analyze + dart run custom_lint - name: Dry run pub publish # We don't want it to fail the CI, it's just to see how would `pub publish` behave. diff --git a/.github/workflows/leancode_hooks-test.yml b/.github/workflows/leancode_hooks-test.yml index 5c3e29fc..02c69f98 100644 --- a/.github/workflows/leancode_hooks-test.yml +++ b/.github/workflows/leancode_hooks-test.yml @@ -50,7 +50,9 @@ jobs: run: flutter pub get - name: Run analyzer - run: flutter analyze + run: | + flutter analyze + dart run custom_lint - name: Run tests with coverage run: flutter test --coverage diff --git a/.github/workflows/login_client-test.yml b/.github/workflows/login_client-test.yml index fa9a041a..b8cc701b 100644 --- a/.github/workflows/login_client-test.yml +++ b/.github/workflows/login_client-test.yml @@ -48,7 +48,9 @@ jobs: run: dart pub get - name: Run analyzer - run: dart analyze + run: | + dart analyze + dart run custom_lint - name: Run tests with coverage run: | diff --git a/.github/workflows/login_client_flutter-test.yml b/.github/workflows/login_client_flutter-test.yml index e71e4192..620e89c3 100644 --- a/.github/workflows/login_client_flutter-test.yml +++ b/.github/workflows/login_client_flutter-test.yml @@ -50,7 +50,9 @@ jobs: run: flutter pub get - name: Run analyzer - run: flutter analyze + run: | + flutter analyze + dart run custom_lint - name: Dry run pub publish # We don't want it to fail the CI, it's just to see how would `pub publish` behave. diff --git a/.github/workflows/override_api_endpoint-test.yml b/.github/workflows/override_api_endpoint-test.yml index dfc0d71a..ab4806a4 100644 --- a/.github/workflows/override_api_endpoint-test.yml +++ b/.github/workflows/override_api_endpoint-test.yml @@ -50,7 +50,9 @@ jobs: run: flutter pub get - name: Run analyzer - run: flutter analyze + run: | + flutter analyze + dart run custom_lint - name: Dry run pub publish # We don't want it to fail the CI, it's just to see how would `pub publish` behave. diff --git a/.gitignore b/.gitignore index a61fee10..ad5b7520 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,9 @@ # Miscellaneous **.DS_Store -# Melos-generated pubspec overrides +# Melos pubspec_overrides.yaml +/.dart_tool # IntelliJ *.iml diff --git a/packages/cqrs/analysis_options.yaml b/packages/cqrs/analysis_options.yaml index 7aea9e04..5c5dcf98 100644 --- a/packages/cqrs/analysis_options.yaml +++ b/packages/cqrs/analysis_options.yaml @@ -1,6 +1,8 @@ include: package:leancode_lint/analysis_options_package.yaml analyzer: + plugins: + - custom_lint exclude: - test/.test_coverage.dart - test/*.mocks.dart diff --git a/packages/cqrs/lib/src/cqrs.dart b/packages/cqrs/lib/src/cqrs.dart index 66c924a5..9026dc07 100644 --- a/packages/cqrs/lib/src/cqrs.dart +++ b/packages/cqrs/lib/src/cqrs.dart @@ -179,8 +179,8 @@ class Cqrs { final result = query.resultFactory(json); _log(query, _ResultType.success); return QuerySuccess(result); - } catch (e, s) { - _log(query, _ResultType.jsonError, e, s); + } catch (err, st) { + _log(query, _ResultType.jsonError, err, st); return QueryFailure(QueryError.unknown); } } @@ -193,11 +193,11 @@ class Cqrs { _log(query, _ResultType.authorizationError); return QueryFailure(QueryError.authorization); } - } on SocketException catch (e, s) { - _log(query, _ResultType.networkError, e, s); + } on SocketException catch (err, st) { + _log(query, _ResultType.networkError, err, st); return QueryFailure(QueryError.network); - } catch (e, s) { - _log(query, _ResultType.unknownError, e, s); + } catch (err, st) { + _log(query, _ResultType.unknownError, err, st); return QueryFailure(QueryError.unknown); } @@ -231,8 +231,8 @@ class Cqrs { CommandError.validation, validationErrors: result.errors, ); - } catch (e, s) { - _log(command, _ResultType.jsonError, e, s); + } catch (err, st) { + _log(command, _ResultType.jsonError, err, st); return const CommandFailure(CommandError.unknown); } } @@ -244,11 +244,11 @@ class Cqrs { _log(command, _ResultType.authorizationError); return const CommandFailure(CommandError.authorization); } - } on SocketException catch (e, s) { - _log(command, _ResultType.networkError, e, s); + } on SocketException catch (err, st) { + _log(command, _ResultType.networkError, err, st); return const CommandFailure(CommandError.network); - } catch (e, s) { - _log(command, _ResultType.unknownError, e, s); + } catch (err, st) { + _log(command, _ResultType.unknownError, err, st); return const CommandFailure(CommandError.unknown); } @@ -270,8 +270,8 @@ class Cqrs { final result = operation.resultFactory(json); _log(operation, _ResultType.success); return OperationSuccess(result); - } catch (e, s) { - _log(operation, _ResultType.jsonError, e, s); + } catch (err, st) { + _log(operation, _ResultType.jsonError, err, st); return OperationFailure(OperationError.unknown); } } @@ -284,11 +284,11 @@ class Cqrs { _log(operation, _ResultType.authorizationError); return OperationFailure(OperationError.authorization); } - } on SocketException catch (e, s) { - _log(operation, _ResultType.networkError, e, s); + } on SocketException catch (err, st) { + _log(operation, _ResultType.networkError, err, st); return OperationFailure(OperationError.network); - } catch (e, s) { - _log(operation, _ResultType.unknownError, e, s); + } catch (err, st) { + _log(operation, _ResultType.unknownError, err, st); return OperationFailure(OperationError.unknown); } diff --git a/packages/cqrs/pubspec.yaml b/packages/cqrs/pubspec.yaml index d97e62d4..5a6f25f0 100644 --- a/packages/cqrs/pubspec.yaml +++ b/packages/cqrs/pubspec.yaml @@ -16,6 +16,7 @@ dependencies: dev_dependencies: coverage: ^1.5.0 - leancode_lint: ^6.0.0 + custom_lint: ^0.5.6 + leancode_lint: ^7.0.0 mocktail: ^1.0.1 test: ^1.17.5 diff --git a/packages/debug_page/analysis_options.yaml b/packages/debug_page/analysis_options.yaml index 4af9cbc4..5f56aca4 100644 --- a/packages/debug_page/analysis_options.yaml +++ b/packages/debug_page/analysis_options.yaml @@ -1 +1,5 @@ include: package:leancode_lint/analysis_options.yaml + +analyzer: + plugins: + - custom_lint diff --git a/packages/debug_page/pubspec.yaml b/packages/debug_page/pubspec.yaml index 1c7e4989..7557100c 100644 --- a/packages/debug_page/pubspec.yaml +++ b/packages/debug_page/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/leancodepl/flutter_corelibrary/tree/master/packages repository: https://github.com/leancodepl/flutter_corelibrary description: >- A package providing a debug page which shows outgoing http requests and Logger logs - + environment: sdk: '>=3.0.0 <4.0.0' flutter: ">=3.10.0" @@ -20,9 +20,10 @@ dependencies: share_plus: ^7.0.2 dev_dependencies: + custom_lint: ^0.5.6 flutter_test: sdk: flutter - leancode_lint: ^6.0.0 + leancode_lint: ^7.0.0 mocktail: ^1.0.1 # For information on the generic Dart part of this file, see the diff --git a/packages/leancode_analytics/analysis_options.yaml b/packages/leancode_analytics/analysis_options.yaml index 31551b63..9aa974b4 100644 --- a/packages/leancode_analytics/analysis_options.yaml +++ b/packages/leancode_analytics/analysis_options.yaml @@ -1 +1,5 @@ include: package:leancode_lint/analysis_options_package.yaml + +analyzer: + plugins: + - custom_lint diff --git a/packages/leancode_analytics/pubspec.yaml b/packages/leancode_analytics/pubspec.yaml index 1152cb4c..c0cfa06a 100644 --- a/packages/leancode_analytics/pubspec.yaml +++ b/packages/leancode_analytics/pubspec.yaml @@ -14,9 +14,9 @@ dependencies: sdk: flutter dev_dependencies: + custom_lint: ^0.5.6 flutter_test: sdk: flutter - leancode_lint: ^6.0.0 + leancode_lint: ^7.0.0 flutter: - diff --git a/packages/leancode_flutter_svg_adaptive_loader/analysis_options.yaml b/packages/leancode_flutter_svg_adaptive_loader/analysis_options.yaml index 31551b63..9aa974b4 100644 --- a/packages/leancode_flutter_svg_adaptive_loader/analysis_options.yaml +++ b/packages/leancode_flutter_svg_adaptive_loader/analysis_options.yaml @@ -1 +1,5 @@ include: package:leancode_lint/analysis_options_package.yaml + +analyzer: + plugins: + - custom_lint diff --git a/packages/leancode_flutter_svg_adaptive_loader/example/pubspec.lock b/packages/leancode_flutter_svg_adaptive_loader/example/pubspec.lock index 7d1e57ae..6942d3c4 100644 --- a/packages/leancode_flutter_svg_adaptive_loader/example/pubspec.lock +++ b/packages/leancode_flutter_svg_adaptive_loader/example/pubspec.lock @@ -321,7 +321,7 @@ packages: path: ".." relative: true source: path - version: "1.0.0" + version: "1.1.1" lints: dependency: transitive description: diff --git a/packages/leancode_flutter_svg_adaptive_loader/pubspec.yaml b/packages/leancode_flutter_svg_adaptive_loader/pubspec.yaml index aa35196b..63d2d8a9 100644 --- a/packages/leancode_flutter_svg_adaptive_loader/pubspec.yaml +++ b/packages/leancode_flutter_svg_adaptive_loader/pubspec.yaml @@ -16,7 +16,8 @@ dependencies: vector_graphics_compiler: ^1.1.7 dev_dependencies: + custom_lint: ^0.5.6 flutter_test: sdk: flutter - leancode_lint: ^6.0.0 + leancode_lint: ^7.0.0 meta: ^1.9.1 diff --git a/packages/leancode_hooks/analysis_options.yaml b/packages/leancode_hooks/analysis_options.yaml index 31551b63..9aa974b4 100644 --- a/packages/leancode_hooks/analysis_options.yaml +++ b/packages/leancode_hooks/analysis_options.yaml @@ -1 +1,5 @@ include: package:leancode_lint/analysis_options_package.yaml + +analyzer: + plugins: + - custom_lint diff --git a/packages/leancode_hooks/pubspec.yaml b/packages/leancode_hooks/pubspec.yaml index 7944d423..c2efb5f1 100644 --- a/packages/leancode_hooks/pubspec.yaml +++ b/packages/leancode_hooks/pubspec.yaml @@ -17,6 +17,7 @@ dependencies: dev_dependencies: coverage: ^1.2.0 + custom_lint: ^0.5.6 flutter_test: sdk: flutter - leancode_lint: ^6.0.0 + leancode_lint: ^7.0.0 diff --git a/packages/leancode_lint/test/lints_test_app/pubspec.lock b/packages/leancode_lint/test/lints_test_app/pubspec.lock index 075a3a8e..70165798 100644 --- a/packages/leancode_lint/test/lints_test_app/pubspec.lock +++ b/packages/leancode_lint/test/lints_test_app/pubspec.lock @@ -212,7 +212,7 @@ packages: path: "../.." relative: true source: path - version: "7.0.0" + version: "7.0.0+1" logging: dependency: transitive description: diff --git a/packages/login_client/analysis_options.yaml b/packages/login_client/analysis_options.yaml index 657efaa3..fad42e16 100644 --- a/packages/login_client/analysis_options.yaml +++ b/packages/login_client/analysis_options.yaml @@ -1,5 +1,7 @@ include: package:leancode_lint/analysis_options_package.yaml analyzer: + plugins: + - custom_lint exclude: - test/.test_coverage.dart diff --git a/packages/login_client/pubspec.yaml b/packages/login_client/pubspec.yaml index 93494e9d..be82c72b 100644 --- a/packages/login_client/pubspec.yaml +++ b/packages/login_client/pubspec.yaml @@ -18,6 +18,7 @@ dependencies: dev_dependencies: coverage: ^1.6.3 - leancode_lint: ^6.0.0 + custom_lint: ^0.5.6 + leancode_lint: ^7.0.0 mocktail: ^1.0.1 test: ^1.16.4 diff --git a/packages/login_client_flutter/analysis_options.yaml b/packages/login_client_flutter/analysis_options.yaml index 31551b63..9aa974b4 100644 --- a/packages/login_client_flutter/analysis_options.yaml +++ b/packages/login_client_flutter/analysis_options.yaml @@ -1 +1,5 @@ include: package:leancode_lint/analysis_options_package.yaml + +analyzer: + plugins: + - custom_lint diff --git a/packages/login_client_flutter/pubspec.yaml b/packages/login_client_flutter/pubspec.yaml index 02f617f8..63b4c472 100644 --- a/packages/login_client_flutter/pubspec.yaml +++ b/packages/login_client_flutter/pubspec.yaml @@ -17,4 +17,5 @@ dependencies: login_client: ^2.0.1 dev_dependencies: - leancode_lint: ^6.0.0 + custom_lint: ^0.5.6 + leancode_lint: ^7.0.0 diff --git a/packages/override_api_endpoint/analysis_options.yaml b/packages/override_api_endpoint/analysis_options.yaml index 31551b63..9aa974b4 100644 --- a/packages/override_api_endpoint/analysis_options.yaml +++ b/packages/override_api_endpoint/analysis_options.yaml @@ -1 +1,5 @@ include: package:leancode_lint/analysis_options_package.yaml + +analyzer: + plugins: + - custom_lint diff --git a/packages/override_api_endpoint/pubspec.yaml b/packages/override_api_endpoint/pubspec.yaml index 959822ed..0a9e3f40 100644 --- a/packages/override_api_endpoint/pubspec.yaml +++ b/packages/override_api_endpoint/pubspec.yaml @@ -16,4 +16,5 @@ dependencies: shared_preferences: ^2.0.6 dev_dependencies: - leancode_lint: ^6.0.0 + custom_lint: ^0.5.6 + leancode_lint: ^7.0.0 diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 00000000..5a8d1a5b --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,317 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + ansi_styles: + dependency: transitive + description: + name: ansi_styles + sha256: "9c656cc12b3c27b17dd982b2cc5c0cfdfbdabd7bc8f3ae5e8542d9867b47ce8a" + url: "https://pub.dev" + source: hosted + version: "0.3.2+1" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + charcode: + dependency: transitive + description: + name: charcode + sha256: fb98c0f6d12c920a02ee2d998da788bca066ca5f148492b7085ee23372b12306 + url: "https://pub.dev" + source: hosted + version: "1.3.1" + cli_launcher: + dependency: transitive + description: + name: cli_launcher + sha256: "5e7e0282b79e8642edd6510ee468ae2976d847a0a29b3916e85f5fa1bfe24005" + url: "https://pub.dev" + source: hosted + version: "0.3.1" + cli_util: + dependency: transitive + description: + name: cli_util + sha256: b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7 + url: "https://pub.dev" + source: hosted + version: "0.4.0" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + conventional_commit: + dependency: transitive + description: + name: conventional_commit + sha256: dec15ad1118f029c618651a4359eb9135d8b88f761aa24e4016d061cd45948f2 + url: "https://pub.dev" + source: hosted + version: "0.6.0+1" + file: + dependency: transitive + description: + name: file + sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d" + url: "https://pub.dev" + source: hosted + version: "6.1.4" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + graphs: + dependency: transitive + description: + name: graphs + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + http: + dependency: transitive + description: + name: http + sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + matcher: + dependency: transitive + description: + name: matcher + sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e" + url: "https://pub.dev" + source: hosted + version: "0.12.16" + melos: + dependency: "direct dev" + description: + name: melos + sha256: a45e54b72cc2444b46be9d32a590119b9ba8c4e87117f2743a73ec049542f2d3 + url: "https://pub.dev" + source: hosted + version: "3.2.0" + meta: + dependency: transitive + description: + name: meta + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + mustache_template: + dependency: transitive + description: + name: mustache_template + sha256: a46e26f91445bfb0b60519be280555b06792460b27b19e2b19ad5b9740df5d1c + url: "https://pub.dev" + source: hosted + version: "2.0.0" + path: + dependency: transitive + description: + name: path + sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" + url: "https://pub.dev" + source: hosted + version: "1.8.3" + platform: + dependency: transitive + description: + name: platform + sha256: "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59" + url: "https://pub.dev" + source: hosted + version: "3.1.3" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + process: + dependency: transitive + description: + name: process + sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09" + url: "https://pub.dev" + source: hosted + version: "4.2.4" + prompts: + dependency: transitive + description: + name: prompts + sha256: "3773b845e85a849f01e793c4fc18a45d52d7783b4cb6c0569fad19f9d0a774a1" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + pub_updater: + dependency: transitive + description: + name: pub_updater + sha256: b06600619c8c219065a548f8f7c192b3e080beff95488ed692780f48f69c0625 + url: "https://pub.dev" + source: hosted + version: "0.3.1" + pubspec: + dependency: transitive + description: + name: pubspec + sha256: f534a50a2b4d48dc3bc0ec147c8bd7c304280fff23b153f3f11803c4d49d927e + url: "https://pub.dev" + source: hosted + version: "2.3.0" + quiver: + dependency: transitive + description: + name: quiver + sha256: b1c1ac5ce6688d77f65f3375a9abb9319b3cb32486bdc7a1e0fdf004d7ba4e47 + url: "https://pub.dev" + source: hosted + version: "3.2.1" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" + source: hosted + version: "0.6.1" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + uri: + dependency: transitive + description: + name: uri + sha256: "889eea21e953187c6099802b7b4cf5219ba8f3518f604a1033064d45b1b8268a" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" + yaml_edit: + dependency: transitive + description: + name: yaml_edit + sha256: "1579d4a0340a83cf9e4d580ea51a16329c916973bffd5bd4b45e911b25d46bfd" + url: "https://pub.dev" + source: hosted + version: "2.1.1" +sdks: + dart: ">=3.0.0 <4.0.0"