pumaguard 21.post29__py3-none-any.whl → 21.post83__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (188) hide show
  1. pumaguard/presets.py +1 -0
  2. pumaguard/pumaguard-ui/.last_build_id +1 -1
  3. pumaguard/pumaguard-ui/assets/NOTICES +621 -71
  4. pumaguard/pumaguard-ui/assets/fonts/MaterialIcons-Regular.otf +0 -0
  5. pumaguard/pumaguard-ui/flutter_bootstrap.js +1 -1
  6. pumaguard/pumaguard-ui/main.dart.js +28869 -28787
  7. pumaguard/web_routes/dhcp.py +311 -54
  8. pumaguard/web_routes/diagnostics.py +6 -0
  9. pumaguard/web_routes/settings.py +13 -0
  10. pumaguard/web_ui.py +29 -0
  11. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/METADATA +1 -1
  12. pumaguard-21.post83.dist-info/RECORD +254 -0
  13. pumaguard-ui/.gitignore +48 -0
  14. pumaguard-ui/.metadata +45 -0
  15. pumaguard-ui/API_REFERENCE.md +717 -0
  16. pumaguard-ui/LICENSE +201 -0
  17. pumaguard-ui/Makefile +36 -0
  18. pumaguard-ui/README.md +371 -0
  19. pumaguard-ui/UI_DEVELOPMENT_CONTEXT.md +427 -0
  20. pumaguard-ui/analysis_options.yaml +28 -0
  21. pumaguard-ui/android/.gitignore +14 -0
  22. pumaguard-ui/android/app/build.gradle.kts +44 -0
  23. pumaguard-ui/android/app/src/debug/AndroidManifest.xml +7 -0
  24. pumaguard-ui/android/app/src/main/AndroidManifest.xml +45 -0
  25. pumaguard-ui/android/app/src/main/kotlin/com/example/pumaguard_ui/MainActivity.kt +5 -0
  26. pumaguard-ui/android/app/src/main/res/drawable/launch_background.xml +12 -0
  27. pumaguard-ui/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  28. pumaguard-ui/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  29. pumaguard-ui/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  30. pumaguard-ui/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  31. pumaguard-ui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  32. pumaguard-ui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  33. pumaguard-ui/android/app/src/main/res/values/styles.xml +18 -0
  34. pumaguard-ui/android/app/src/main/res/values-night/styles.xml +18 -0
  35. pumaguard-ui/android/app/src/profile/AndroidManifest.xml +7 -0
  36. pumaguard-ui/android/build.gradle.kts +24 -0
  37. pumaguard-ui/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  38. pumaguard-ui/android/gradle.properties +2 -0
  39. pumaguard-ui/android/settings.gradle.kts +26 -0
  40. pumaguard-ui/fonts/README.md +38 -0
  41. pumaguard-ui/fonts/Roboto-Bold.ttf +0 -0
  42. pumaguard-ui/fonts/Roboto-Light.ttf +0 -0
  43. pumaguard-ui/fonts/Roboto-Medium.ttf +0 -0
  44. pumaguard-ui/fonts/Roboto-Regular.ttf +0 -0
  45. pumaguard-ui/fonts/RobotoMono-Bold.ttf +0 -0
  46. pumaguard-ui/fonts/RobotoMono-Medium.ttf +0 -0
  47. pumaguard-ui/fonts/RobotoMono-Regular.ttf +0 -0
  48. pumaguard-ui/fonts/download_fonts.sh +76 -0
  49. pumaguard-ui/ios/.gitignore +34 -0
  50. pumaguard-ui/ios/Flutter/AppFrameworkInfo.plist +26 -0
  51. pumaguard-ui/ios/Flutter/Debug.xcconfig +1 -0
  52. pumaguard-ui/ios/Flutter/Release.xcconfig +1 -0
  53. pumaguard-ui/ios/Runner/AppDelegate.swift +13 -0
  54. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
  55. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
  56. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
  57. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
  58. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
  59. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
  60. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
  61. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
  62. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
  63. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
  64. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
  65. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
  66. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
  67. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
  68. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
  69. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
  70. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
  71. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
  72. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
  73. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
  74. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
  75. pumaguard-ui/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
  76. pumaguard-ui/ios/Runner/Base.lproj/Main.storyboard +26 -0
  77. pumaguard-ui/ios/Runner/Info.plist +49 -0
  78. pumaguard-ui/ios/Runner/Runner-Bridging-Header.h +1 -0
  79. pumaguard-ui/ios/Runner.xcodeproj/project.pbxproj +616 -0
  80. pumaguard-ui/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  81. pumaguard-ui/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  82. pumaguard-ui/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  83. pumaguard-ui/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +101 -0
  84. pumaguard-ui/ios/Runner.xcworkspace/contents.xcworkspacedata +7 -0
  85. pumaguard-ui/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  86. pumaguard-ui/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  87. pumaguard-ui/ios/RunnerTests/RunnerTests.swift +12 -0
  88. pumaguard-ui/lib/main.dart +56 -0
  89. pumaguard-ui/lib/models/camera.dart +45 -0
  90. pumaguard-ui/lib/models/plug.dart +45 -0
  91. pumaguard-ui/lib/models/settings.dart +112 -0
  92. pumaguard-ui/lib/models/status.dart +58 -0
  93. pumaguard-ui/lib/screens/directories_screen.dart +319 -0
  94. pumaguard-ui/lib/screens/home_screen.dart +545 -0
  95. pumaguard-ui/lib/screens/image_browser_screen.dart +1248 -0
  96. pumaguard-ui/lib/screens/server_discovery_screen.dart +390 -0
  97. pumaguard-ui/lib/screens/settings_screen.dart +1162 -0
  98. pumaguard-ui/lib/screens/wifi_settings_screen.dart +671 -0
  99. pumaguard-ui/lib/services/api_service.dart +717 -0
  100. pumaguard-ui/lib/services/camera_events_service.dart +195 -0
  101. pumaguard-ui/lib/services/mdns_service.dart +4 -0
  102. pumaguard-ui/lib/services/mdns_service_impl.dart +282 -0
  103. pumaguard-ui/lib/services/mdns_service_io.dart +1 -0
  104. pumaguard-ui/lib/services/mdns_service_web.dart +106 -0
  105. pumaguard-ui/lib/utils/download_helper.dart +2 -0
  106. pumaguard-ui/lib/utils/download_helper_stub.dart +6 -0
  107. pumaguard-ui/lib/utils/download_helper_web.dart +14 -0
  108. pumaguard-ui/lib/utils/platform_url.dart +10 -0
  109. pumaguard-ui/lib/utils/platform_url_stub.dart +11 -0
  110. pumaguard-ui/lib/utils/platform_url_web.dart +16 -0
  111. pumaguard-ui/linux/.gitignore +1 -0
  112. pumaguard-ui/linux/CMakeLists.txt +128 -0
  113. pumaguard-ui/linux/flutter/CMakeLists.txt +88 -0
  114. pumaguard-ui/linux/flutter/generated_plugin_registrant.cc +15 -0
  115. pumaguard-ui/linux/flutter/generated_plugin_registrant.h +15 -0
  116. pumaguard-ui/linux/flutter/generated_plugins.cmake +24 -0
  117. pumaguard-ui/linux/runner/CMakeLists.txt +26 -0
  118. pumaguard-ui/linux/runner/main.cc +6 -0
  119. pumaguard-ui/linux/runner/my_application.cc +148 -0
  120. pumaguard-ui/linux/runner/my_application.h +21 -0
  121. pumaguard-ui/macos/.gitignore +7 -0
  122. pumaguard-ui/macos/Flutter/Flutter-Debug.xcconfig +1 -0
  123. pumaguard-ui/macos/Flutter/Flutter-Release.xcconfig +1 -0
  124. pumaguard-ui/macos/Flutter/GeneratedPluginRegistrant.swift +16 -0
  125. pumaguard-ui/macos/Runner/AppDelegate.swift +13 -0
  126. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  127. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  128. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  129. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  130. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  131. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  132. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  133. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  134. pumaguard-ui/macos/Runner/Base.lproj/MainMenu.xib +343 -0
  135. pumaguard-ui/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  136. pumaguard-ui/macos/Runner/Configs/Debug.xcconfig +2 -0
  137. pumaguard-ui/macos/Runner/Configs/Release.xcconfig +2 -0
  138. pumaguard-ui/macos/Runner/Configs/Warnings.xcconfig +13 -0
  139. pumaguard-ui/macos/Runner/DebugProfile.entitlements +12 -0
  140. pumaguard-ui/macos/Runner/Info.plist +32 -0
  141. pumaguard-ui/macos/Runner/MainFlutterWindow.swift +15 -0
  142. pumaguard-ui/macos/Runner/Release.entitlements +8 -0
  143. pumaguard-ui/macos/Runner.xcodeproj/project.pbxproj +705 -0
  144. pumaguard-ui/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  145. pumaguard-ui/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +99 -0
  146. pumaguard-ui/macos/Runner.xcworkspace/contents.xcworkspacedata +7 -0
  147. pumaguard-ui/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  148. pumaguard-ui/macos/RunnerTests/RunnerTests.swift +12 -0
  149. pumaguard-ui/pubspec.lock +882 -0
  150. pumaguard-ui/pubspec.yaml +125 -0
  151. pumaguard-ui/test/models/camera_test.dart +515 -0
  152. pumaguard-ui/test/models/plug_test.dart +499 -0
  153. pumaguard-ui/test/models/settings_test.dart +903 -0
  154. pumaguard-ui/test/models/status_test.dart +707 -0
  155. pumaguard-ui/test/screens/image_browser_grouping_test.dart +555 -0
  156. pumaguard-ui/test/services/api_service_cameras_test.dart +580 -0
  157. pumaguard-ui/test/services/api_service_image_browser_test.dart +512 -0
  158. pumaguard-ui/test/widget_test.dart.skip +38 -0
  159. pumaguard-ui/web/favicon.png +0 -0
  160. pumaguard-ui/web/icons/Icon-192.png +0 -0
  161. pumaguard-ui/web/icons/Icon-512.png +0 -0
  162. pumaguard-ui/web/icons/Icon-maskable-192.png +0 -0
  163. pumaguard-ui/web/icons/Icon-maskable-512.png +0 -0
  164. pumaguard-ui/web/index.html +38 -0
  165. pumaguard-ui/web/manifest.json +35 -0
  166. pumaguard-ui/windows/.gitignore +17 -0
  167. pumaguard-ui/windows/CMakeLists.txt +108 -0
  168. pumaguard-ui/windows/flutter/CMakeLists.txt +109 -0
  169. pumaguard-ui/windows/flutter/generated_plugin_registrant.cc +14 -0
  170. pumaguard-ui/windows/flutter/generated_plugin_registrant.h +15 -0
  171. pumaguard-ui/windows/flutter/generated_plugins.cmake +24 -0
  172. pumaguard-ui/windows/runner/CMakeLists.txt +40 -0
  173. pumaguard-ui/windows/runner/Runner.rc +121 -0
  174. pumaguard-ui/windows/runner/flutter_window.cpp +71 -0
  175. pumaguard-ui/windows/runner/flutter_window.h +33 -0
  176. pumaguard-ui/windows/runner/main.cpp +43 -0
  177. pumaguard-ui/windows/runner/resource.h +16 -0
  178. pumaguard-ui/windows/runner/resources/app_icon.ico +0 -0
  179. pumaguard-ui/windows/runner/runner.exe.manifest +14 -0
  180. pumaguard-ui/windows/runner/utils.cpp +65 -0
  181. pumaguard-ui/windows/runner/utils.h +19 -0
  182. pumaguard-ui/windows/runner/win32_window.cpp +288 -0
  183. pumaguard-ui/windows/runner/win32_window.h +102 -0
  184. pumaguard-21.post29.dist-info/RECORD +0 -83
  185. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/WHEEL +0 -0
  186. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/entry_points.txt +0 -0
  187. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/licenses/LICENSE +0 -0
  188. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,882 @@
1
+ # Generated by pub
2
+ # See https://dart.dev/tools/pub/glossary#lockfile
3
+ packages:
4
+ _fe_analyzer_shared:
5
+ dependency: transitive
6
+ description:
7
+ name: _fe_analyzer_shared
8
+ sha256: "8d7ff3948166b8ec5da0fbb5962000926b8e02f2ed9b3e51d1738905fbd4c98d"
9
+ url: "https://pub.dev"
10
+ source: hosted
11
+ version: "93.0.0"
12
+ analyzer:
13
+ dependency: transitive
14
+ description:
15
+ name: analyzer
16
+ sha256: de7148ed2fcec579b19f122c1800933dfa028f6d9fd38a152b04b1516cec120b
17
+ url: "https://pub.dev"
18
+ source: hosted
19
+ version: "10.0.1"
20
+ args:
21
+ dependency: transitive
22
+ description:
23
+ name: args
24
+ sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04
25
+ url: "https://pub.dev"
26
+ source: hosted
27
+ version: "2.7.0"
28
+ async:
29
+ dependency: transitive
30
+ description:
31
+ name: async
32
+ sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
33
+ url: "https://pub.dev"
34
+ source: hosted
35
+ version: "2.13.0"
36
+ boolean_selector:
37
+ dependency: transitive
38
+ description:
39
+ name: boolean_selector
40
+ sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
41
+ url: "https://pub.dev"
42
+ source: hosted
43
+ version: "2.1.2"
44
+ build:
45
+ dependency: transitive
46
+ description:
47
+ name: build
48
+ sha256: "275bf6bb2a00a9852c28d4e0b410da1d833a734d57d39d44f94bfc895a484ec3"
49
+ url: "https://pub.dev"
50
+ source: hosted
51
+ version: "4.0.4"
52
+ build_config:
53
+ dependency: transitive
54
+ description:
55
+ name: build_config
56
+ sha256: "4f64382b97504dc2fcdf487d5aae33418e08b4703fc21249e4db6d804a4d0187"
57
+ url: "https://pub.dev"
58
+ source: hosted
59
+ version: "1.2.0"
60
+ build_daemon:
61
+ dependency: transitive
62
+ description:
63
+ name: build_daemon
64
+ sha256: bf05f6e12cfea92d3c09308d7bcdab1906cd8a179b023269eed00c071004b957
65
+ url: "https://pub.dev"
66
+ source: hosted
67
+ version: "4.1.1"
68
+ build_runner:
69
+ dependency: "direct dev"
70
+ description:
71
+ name: build_runner
72
+ sha256: b4d854962a32fd9f8efc0b76f98214790b833af8b2e9b2df6bfc927c0415a072
73
+ url: "https://pub.dev"
74
+ source: hosted
75
+ version: "2.10.5"
76
+ built_collection:
77
+ dependency: transitive
78
+ description:
79
+ name: built_collection
80
+ sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
81
+ url: "https://pub.dev"
82
+ source: hosted
83
+ version: "5.1.1"
84
+ built_value:
85
+ dependency: transitive
86
+ description:
87
+ name: built_value
88
+ sha256: "7931c90b84bc573fef103548e354258ae4c9d28d140e41961df6843c5d60d4d8"
89
+ url: "https://pub.dev"
90
+ source: hosted
91
+ version: "8.12.3"
92
+ characters:
93
+ dependency: transitive
94
+ description:
95
+ name: characters
96
+ sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803
97
+ url: "https://pub.dev"
98
+ source: hosted
99
+ version: "1.4.0"
100
+ checked_yaml:
101
+ dependency: transitive
102
+ description:
103
+ name: checked_yaml
104
+ sha256: "959525d3162f249993882720d52b7e0c833978df229be20702b33d48d91de70f"
105
+ url: "https://pub.dev"
106
+ source: hosted
107
+ version: "2.0.4"
108
+ clock:
109
+ dependency: transitive
110
+ description:
111
+ name: clock
112
+ sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
113
+ url: "https://pub.dev"
114
+ source: hosted
115
+ version: "1.1.2"
116
+ code_builder:
117
+ dependency: transitive
118
+ description:
119
+ name: code_builder
120
+ sha256: "6a6cab2ba4680d6423f34a9b972a4c9a94ebe1b62ecec4e1a1f2cba91fd1319d"
121
+ url: "https://pub.dev"
122
+ source: hosted
123
+ version: "4.11.1"
124
+ collection:
125
+ dependency: transitive
126
+ description:
127
+ name: collection
128
+ sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
129
+ url: "https://pub.dev"
130
+ source: hosted
131
+ version: "1.19.1"
132
+ convert:
133
+ dependency: transitive
134
+ description:
135
+ name: convert
136
+ sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
137
+ url: "https://pub.dev"
138
+ source: hosted
139
+ version: "3.1.2"
140
+ cross_file:
141
+ dependency: transitive
142
+ description:
143
+ name: cross_file
144
+ sha256: "28bb3ae56f117b5aec029d702a90f57d285cd975c3c5c281eaca38dbc47c5937"
145
+ url: "https://pub.dev"
146
+ source: hosted
147
+ version: "0.3.5+2"
148
+ crypto:
149
+ dependency: "direct main"
150
+ description:
151
+ name: crypto
152
+ sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf
153
+ url: "https://pub.dev"
154
+ source: hosted
155
+ version: "3.0.7"
156
+ cupertino_icons:
157
+ dependency: "direct main"
158
+ description:
159
+ name: cupertino_icons
160
+ sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
161
+ url: "https://pub.dev"
162
+ source: hosted
163
+ version: "1.0.8"
164
+ dart_style:
165
+ dependency: transitive
166
+ description:
167
+ name: dart_style
168
+ sha256: "15a7db352c8fc6a4d2bc475ba901c25b39fe7157541da4c16eacce6f8be83e49"
169
+ url: "https://pub.dev"
170
+ source: hosted
171
+ version: "3.1.5"
172
+ dbus:
173
+ dependency: transitive
174
+ description:
175
+ name: dbus
176
+ sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
177
+ url: "https://pub.dev"
178
+ source: hosted
179
+ version: "0.7.11"
180
+ dio:
181
+ dependency: transitive
182
+ description:
183
+ name: dio
184
+ sha256: b9d46faecab38fc8cc286f80bc4d61a3bb5d4ac49e51ed877b4d6706efe57b25
185
+ url: "https://pub.dev"
186
+ source: hosted
187
+ version: "5.9.1"
188
+ dio_web_adapter:
189
+ dependency: transitive
190
+ description:
191
+ name: dio_web_adapter
192
+ sha256: "7586e476d70caecaf1686d21eee7247ea43ef5c345eab9e0cc3583ff13378d78"
193
+ url: "https://pub.dev"
194
+ source: hosted
195
+ version: "2.1.1"
196
+ fake_async:
197
+ dependency: transitive
198
+ description:
199
+ name: fake_async
200
+ sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
201
+ url: "https://pub.dev"
202
+ source: hosted
203
+ version: "1.3.3"
204
+ ffi:
205
+ dependency: transitive
206
+ description:
207
+ name: ffi
208
+ sha256: d07d37192dbf97461359c1518788f203b0c9102cfd2c35a716b823741219542c
209
+ url: "https://pub.dev"
210
+ source: hosted
211
+ version: "2.1.5"
212
+ file:
213
+ dependency: transitive
214
+ description:
215
+ name: file
216
+ sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
217
+ url: "https://pub.dev"
218
+ source: hosted
219
+ version: "7.0.1"
220
+ file_picker:
221
+ dependency: "direct main"
222
+ description:
223
+ name: file_picker
224
+ sha256: "57d9a1dd5063f85fa3107fb42d1faffda52fdc948cefd5fe5ea85267a5fc7343"
225
+ url: "https://pub.dev"
226
+ source: hosted
227
+ version: "10.3.10"
228
+ fixnum:
229
+ dependency: transitive
230
+ description:
231
+ name: fixnum
232
+ sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
233
+ url: "https://pub.dev"
234
+ source: hosted
235
+ version: "1.1.1"
236
+ flutter:
237
+ dependency: "direct main"
238
+ description: flutter
239
+ source: sdk
240
+ version: "0.0.0"
241
+ flutter_lints:
242
+ dependency: "direct dev"
243
+ description:
244
+ name: flutter_lints
245
+ sha256: "3105dc8492f6183fb076ccf1f351ac3d60564bff92e20bfc4af9cc1651f4e7e1"
246
+ url: "https://pub.dev"
247
+ source: hosted
248
+ version: "6.0.0"
249
+ flutter_plugin_android_lifecycle:
250
+ dependency: transitive
251
+ description:
252
+ name: flutter_plugin_android_lifecycle
253
+ sha256: ee8068e0e1cd16c4a82714119918efdeed33b3ba7772c54b5d094ab53f9b7fd1
254
+ url: "https://pub.dev"
255
+ source: hosted
256
+ version: "2.0.33"
257
+ flutter_test:
258
+ dependency: "direct dev"
259
+ description: flutter
260
+ source: sdk
261
+ version: "0.0.0"
262
+ flutter_web_plugins:
263
+ dependency: transitive
264
+ description: flutter
265
+ source: sdk
266
+ version: "0.0.0"
267
+ glob:
268
+ dependency: transitive
269
+ description:
270
+ name: glob
271
+ sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
272
+ url: "https://pub.dev"
273
+ source: hosted
274
+ version: "2.1.3"
275
+ graphs:
276
+ dependency: transitive
277
+ description:
278
+ name: graphs
279
+ sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
280
+ url: "https://pub.dev"
281
+ source: hosted
282
+ version: "2.3.2"
283
+ http:
284
+ dependency: "direct main"
285
+ description:
286
+ name: http
287
+ sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412"
288
+ url: "https://pub.dev"
289
+ source: hosted
290
+ version: "1.6.0"
291
+ http_mock_adapter:
292
+ dependency: "direct dev"
293
+ description:
294
+ name: http_mock_adapter
295
+ sha256: "46399c78bd4a0af071978edd8c502d7aeeed73b5fb9860bca86b5ed647a63c1b"
296
+ url: "https://pub.dev"
297
+ source: hosted
298
+ version: "0.6.1"
299
+ http_multi_server:
300
+ dependency: transitive
301
+ description:
302
+ name: http_multi_server
303
+ sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
304
+ url: "https://pub.dev"
305
+ source: hosted
306
+ version: "3.2.2"
307
+ http_parser:
308
+ dependency: transitive
309
+ description:
310
+ name: http_parser
311
+ sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
312
+ url: "https://pub.dev"
313
+ source: hosted
314
+ version: "4.1.2"
315
+ intl:
316
+ dependency: "direct main"
317
+ description:
318
+ name: intl
319
+ sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
320
+ url: "https://pub.dev"
321
+ source: hosted
322
+ version: "0.20.2"
323
+ io:
324
+ dependency: transitive
325
+ description:
326
+ name: io
327
+ sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
328
+ url: "https://pub.dev"
329
+ source: hosted
330
+ version: "1.0.5"
331
+ json_annotation:
332
+ dependency: "direct main"
333
+ description:
334
+ name: json_annotation
335
+ sha256: "805fa86df56383000f640384b282ce0cb8431f1a7a2396de92fb66186d8c57df"
336
+ url: "https://pub.dev"
337
+ source: hosted
338
+ version: "4.10.0"
339
+ json_schema:
340
+ dependency: transitive
341
+ description:
342
+ name: json_schema
343
+ sha256: f37d9c3fdfe8c9aae55fdfd5af815d24ce63c3a0f6a2c1f0982c30f43643fa1a
344
+ url: "https://pub.dev"
345
+ source: hosted
346
+ version: "5.2.2"
347
+ json_serializable:
348
+ dependency: "direct dev"
349
+ description:
350
+ name: json_serializable
351
+ sha256: "93fba3ad139dab2b1ce59ecc6fdce6da46a42cdb6c4399ecda30f1e7e725760d"
352
+ url: "https://pub.dev"
353
+ source: hosted
354
+ version: "6.12.0"
355
+ leak_tracker:
356
+ dependency: transitive
357
+ description:
358
+ name: leak_tracker
359
+ sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
360
+ url: "https://pub.dev"
361
+ source: hosted
362
+ version: "11.0.2"
363
+ leak_tracker_flutter_testing:
364
+ dependency: transitive
365
+ description:
366
+ name: leak_tracker_flutter_testing
367
+ sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
368
+ url: "https://pub.dev"
369
+ source: hosted
370
+ version: "3.0.10"
371
+ leak_tracker_testing:
372
+ dependency: transitive
373
+ description:
374
+ name: leak_tracker_testing
375
+ sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
376
+ url: "https://pub.dev"
377
+ source: hosted
378
+ version: "3.0.2"
379
+ lints:
380
+ dependency: transitive
381
+ description:
382
+ name: lints
383
+ sha256: "12f842a479589fea194fe5c5a3095abc7be0c1f2ddfa9a0e76aed1dbd26a87df"
384
+ url: "https://pub.dev"
385
+ source: hosted
386
+ version: "6.1.0"
387
+ logger:
388
+ dependency: transitive
389
+ description:
390
+ name: logger
391
+ sha256: a7967e31b703831a893bbc3c3dd11db08126fe5f369b5c648a36f821979f5be3
392
+ url: "https://pub.dev"
393
+ source: hosted
394
+ version: "2.6.2"
395
+ logging:
396
+ dependency: transitive
397
+ description:
398
+ name: logging
399
+ sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
400
+ url: "https://pub.dev"
401
+ source: hosted
402
+ version: "1.3.0"
403
+ matcher:
404
+ dependency: transitive
405
+ description:
406
+ name: matcher
407
+ sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
408
+ url: "https://pub.dev"
409
+ source: hosted
410
+ version: "0.12.17"
411
+ material_color_utilities:
412
+ dependency: transitive
413
+ description:
414
+ name: material_color_utilities
415
+ sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
416
+ url: "https://pub.dev"
417
+ source: hosted
418
+ version: "0.11.1"
419
+ meta:
420
+ dependency: transitive
421
+ description:
422
+ name: meta
423
+ sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
424
+ url: "https://pub.dev"
425
+ source: hosted
426
+ version: "1.17.0"
427
+ mime:
428
+ dependency: transitive
429
+ description:
430
+ name: mime
431
+ sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
432
+ url: "https://pub.dev"
433
+ source: hosted
434
+ version: "2.0.0"
435
+ mockito:
436
+ dependency: "direct dev"
437
+ description:
438
+ name: mockito
439
+ sha256: a45d1aa065b796922db7b9e7e7e45f921aed17adf3a8318a1f47097e7e695566
440
+ url: "https://pub.dev"
441
+ source: hosted
442
+ version: "5.6.3"
443
+ multicast_dns:
444
+ dependency: "direct main"
445
+ description:
446
+ name: multicast_dns
447
+ sha256: de72ada5c3db6fdd6ad4ae99452fe05fb403c4bb37c67ceb255ddd37d2b5b1eb
448
+ url: "https://pub.dev"
449
+ source: hosted
450
+ version: "0.3.3"
451
+ nested:
452
+ dependency: transitive
453
+ description:
454
+ name: nested
455
+ sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
456
+ url: "https://pub.dev"
457
+ source: hosted
458
+ version: "1.0.0"
459
+ package_config:
460
+ dependency: transitive
461
+ description:
462
+ name: package_config
463
+ sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc
464
+ url: "https://pub.dev"
465
+ source: hosted
466
+ version: "2.2.0"
467
+ path:
468
+ dependency: transitive
469
+ description:
470
+ name: path
471
+ sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
472
+ url: "https://pub.dev"
473
+ source: hosted
474
+ version: "1.9.1"
475
+ path_provider_linux:
476
+ dependency: transitive
477
+ description:
478
+ name: path_provider_linux
479
+ sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
480
+ url: "https://pub.dev"
481
+ source: hosted
482
+ version: "2.2.1"
483
+ path_provider_platform_interface:
484
+ dependency: transitive
485
+ description:
486
+ name: path_provider_platform_interface
487
+ sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
488
+ url: "https://pub.dev"
489
+ source: hosted
490
+ version: "2.1.2"
491
+ path_provider_windows:
492
+ dependency: transitive
493
+ description:
494
+ name: path_provider_windows
495
+ sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
496
+ url: "https://pub.dev"
497
+ source: hosted
498
+ version: "2.3.0"
499
+ petitparser:
500
+ dependency: transitive
501
+ description:
502
+ name: petitparser
503
+ sha256: "1a97266a94f7350d30ae522c0af07890c70b8e62c71e8e3920d1db4d23c057d1"
504
+ url: "https://pub.dev"
505
+ source: hosted
506
+ version: "7.0.1"
507
+ platform:
508
+ dependency: transitive
509
+ description:
510
+ name: platform
511
+ sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
512
+ url: "https://pub.dev"
513
+ source: hosted
514
+ version: "3.1.6"
515
+ plugin_platform_interface:
516
+ dependency: transitive
517
+ description:
518
+ name: plugin_platform_interface
519
+ sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
520
+ url: "https://pub.dev"
521
+ source: hosted
522
+ version: "2.1.8"
523
+ pool:
524
+ dependency: transitive
525
+ description:
526
+ name: pool
527
+ sha256: "978783255c543aa3586a1b3c21f6e9d720eb315376a915872c61ef8b5c20177d"
528
+ url: "https://pub.dev"
529
+ source: hosted
530
+ version: "1.5.2"
531
+ provider:
532
+ dependency: "direct main"
533
+ description:
534
+ name: provider
535
+ sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
536
+ url: "https://pub.dev"
537
+ source: hosted
538
+ version: "6.1.5+1"
539
+ pub_semver:
540
+ dependency: transitive
541
+ description:
542
+ name: pub_semver
543
+ sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585"
544
+ url: "https://pub.dev"
545
+ source: hosted
546
+ version: "2.2.0"
547
+ pubspec_parse:
548
+ dependency: transitive
549
+ description:
550
+ name: pubspec_parse
551
+ sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082"
552
+ url: "https://pub.dev"
553
+ source: hosted
554
+ version: "1.5.0"
555
+ quiver:
556
+ dependency: transitive
557
+ description:
558
+ name: quiver
559
+ sha256: ea0b925899e64ecdfbf9c7becb60d5b50e706ade44a85b2363be2a22d88117d2
560
+ url: "https://pub.dev"
561
+ source: hosted
562
+ version: "3.2.2"
563
+ rfc_6901:
564
+ dependency: transitive
565
+ description:
566
+ name: rfc_6901
567
+ sha256: "6a43b1858dca2febaf93e15639aa6b0c49ccdfd7647775f15a499f872b018154"
568
+ url: "https://pub.dev"
569
+ source: hosted
570
+ version: "0.2.1"
571
+ shared_preferences:
572
+ dependency: "direct main"
573
+ description:
574
+ name: shared_preferences
575
+ sha256: "2939ae520c9024cb197fc20dee269cd8cdbf564c8b5746374ec6cacdc5169e64"
576
+ url: "https://pub.dev"
577
+ source: hosted
578
+ version: "2.5.4"
579
+ shared_preferences_android:
580
+ dependency: transitive
581
+ description:
582
+ name: shared_preferences_android
583
+ sha256: cbc40be9be1c5af4dab4d6e0de4d5d3729e6f3d65b89d21e1815d57705644a6f
584
+ url: "https://pub.dev"
585
+ source: hosted
586
+ version: "2.4.20"
587
+ shared_preferences_foundation:
588
+ dependency: transitive
589
+ description:
590
+ name: shared_preferences_foundation
591
+ sha256: "4e7eaffc2b17ba398759f1151415869a34771ba11ebbccd1b0145472a619a64f"
592
+ url: "https://pub.dev"
593
+ source: hosted
594
+ version: "2.5.6"
595
+ shared_preferences_linux:
596
+ dependency: transitive
597
+ description:
598
+ name: shared_preferences_linux
599
+ sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
600
+ url: "https://pub.dev"
601
+ source: hosted
602
+ version: "2.4.1"
603
+ shared_preferences_platform_interface:
604
+ dependency: transitive
605
+ description:
606
+ name: shared_preferences_platform_interface
607
+ sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
608
+ url: "https://pub.dev"
609
+ source: hosted
610
+ version: "2.4.1"
611
+ shared_preferences_web:
612
+ dependency: transitive
613
+ description:
614
+ name: shared_preferences_web
615
+ sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019
616
+ url: "https://pub.dev"
617
+ source: hosted
618
+ version: "2.4.3"
619
+ shared_preferences_windows:
620
+ dependency: transitive
621
+ description:
622
+ name: shared_preferences_windows
623
+ sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
624
+ url: "https://pub.dev"
625
+ source: hosted
626
+ version: "2.4.1"
627
+ shelf:
628
+ dependency: transitive
629
+ description:
630
+ name: shelf
631
+ sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12
632
+ url: "https://pub.dev"
633
+ source: hosted
634
+ version: "1.4.2"
635
+ shelf_web_socket:
636
+ dependency: transitive
637
+ description:
638
+ name: shelf_web_socket
639
+ sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925"
640
+ url: "https://pub.dev"
641
+ source: hosted
642
+ version: "3.0.0"
643
+ sky_engine:
644
+ dependency: transitive
645
+ description: flutter
646
+ source: sdk
647
+ version: "0.0.0"
648
+ source_gen:
649
+ dependency: transitive
650
+ description:
651
+ name: source_gen
652
+ sha256: "1d562a3c1f713904ebbed50d2760217fd8a51ca170ac4b05b0db490699dbac17"
653
+ url: "https://pub.dev"
654
+ source: hosted
655
+ version: "4.2.0"
656
+ source_helper:
657
+ dependency: transitive
658
+ description:
659
+ name: source_helper
660
+ sha256: "4a85e90b50694e652075cbe4575665539d253e6ec10e46e76b45368ab5e3caae"
661
+ url: "https://pub.dev"
662
+ source: hosted
663
+ version: "1.3.10"
664
+ source_span:
665
+ dependency: transitive
666
+ description:
667
+ name: source_span
668
+ sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
669
+ url: "https://pub.dev"
670
+ source: hosted
671
+ version: "1.10.1"
672
+ stack_trace:
673
+ dependency: transitive
674
+ description:
675
+ name: stack_trace
676
+ sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
677
+ url: "https://pub.dev"
678
+ source: hosted
679
+ version: "1.12.1"
680
+ stream_channel:
681
+ dependency: transitive
682
+ description:
683
+ name: stream_channel
684
+ sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
685
+ url: "https://pub.dev"
686
+ source: hosted
687
+ version: "2.1.4"
688
+ stream_transform:
689
+ dependency: transitive
690
+ description:
691
+ name: stream_transform
692
+ sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
693
+ url: "https://pub.dev"
694
+ source: hosted
695
+ version: "2.1.1"
696
+ string_scanner:
697
+ dependency: transitive
698
+ description:
699
+ name: string_scanner
700
+ sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
701
+ url: "https://pub.dev"
702
+ source: hosted
703
+ version: "1.4.1"
704
+ term_glyph:
705
+ dependency: transitive
706
+ description:
707
+ name: term_glyph
708
+ sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
709
+ url: "https://pub.dev"
710
+ source: hosted
711
+ version: "1.2.2"
712
+ test_api:
713
+ dependency: transitive
714
+ description:
715
+ name: test_api
716
+ sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55
717
+ url: "https://pub.dev"
718
+ source: hosted
719
+ version: "0.7.7"
720
+ typed_data:
721
+ dependency: transitive
722
+ description:
723
+ name: typed_data
724
+ sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
725
+ url: "https://pub.dev"
726
+ source: hosted
727
+ version: "1.4.0"
728
+ uri:
729
+ dependency: transitive
730
+ description:
731
+ name: uri
732
+ sha256: "889eea21e953187c6099802b7b4cf5219ba8f3518f604a1033064d45b1b8268a"
733
+ url: "https://pub.dev"
734
+ source: hosted
735
+ version: "1.0.0"
736
+ url_launcher:
737
+ dependency: "direct main"
738
+ description:
739
+ name: url_launcher
740
+ sha256: f6a7e5c4835bb4e3026a04793a4199ca2d14c739ec378fdfe23fc8075d0439f8
741
+ url: "https://pub.dev"
742
+ source: hosted
743
+ version: "6.3.2"
744
+ url_launcher_android:
745
+ dependency: transitive
746
+ description:
747
+ name: url_launcher_android
748
+ sha256: "767344bf3063897b5cf0db830e94f904528e6dd50a6dfaf839f0abf509009611"
749
+ url: "https://pub.dev"
750
+ source: hosted
751
+ version: "6.3.28"
752
+ url_launcher_ios:
753
+ dependency: transitive
754
+ description:
755
+ name: url_launcher_ios
756
+ sha256: cfde38aa257dae62ffe79c87fab20165dfdf6988c1d31b58ebf59b9106062aad
757
+ url: "https://pub.dev"
758
+ source: hosted
759
+ version: "6.3.6"
760
+ url_launcher_linux:
761
+ dependency: transitive
762
+ description:
763
+ name: url_launcher_linux
764
+ sha256: d5e14138b3bc193a0f63c10a53c94b91d399df0512b1f29b94a043db7482384a
765
+ url: "https://pub.dev"
766
+ source: hosted
767
+ version: "3.2.2"
768
+ url_launcher_macos:
769
+ dependency: transitive
770
+ description:
771
+ name: url_launcher_macos
772
+ sha256: "368adf46f71ad3c21b8f06614adb38346f193f3a59ba8fe9a2fd74133070ba18"
773
+ url: "https://pub.dev"
774
+ source: hosted
775
+ version: "3.2.5"
776
+ url_launcher_platform_interface:
777
+ dependency: transitive
778
+ description:
779
+ name: url_launcher_platform_interface
780
+ sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029"
781
+ url: "https://pub.dev"
782
+ source: hosted
783
+ version: "2.3.2"
784
+ url_launcher_web:
785
+ dependency: transitive
786
+ description:
787
+ name: url_launcher_web
788
+ sha256: d0412fcf4c6b31ecfdb7762359b7206ffba3bbffd396c6d9f9c4616ece476c1f
789
+ url: "https://pub.dev"
790
+ source: hosted
791
+ version: "2.4.2"
792
+ url_launcher_windows:
793
+ dependency: transitive
794
+ description:
795
+ name: url_launcher_windows
796
+ sha256: "712c70ab1b99744ff066053cbe3e80c73332b38d46e5e945c98689b2e66fc15f"
797
+ url: "https://pub.dev"
798
+ source: hosted
799
+ version: "3.1.5"
800
+ vector_math:
801
+ dependency: transitive
802
+ description:
803
+ name: vector_math
804
+ sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
805
+ url: "https://pub.dev"
806
+ source: hosted
807
+ version: "2.2.0"
808
+ vm_service:
809
+ dependency: transitive
810
+ description:
811
+ name: vm_service
812
+ sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
813
+ url: "https://pub.dev"
814
+ source: hosted
815
+ version: "15.0.2"
816
+ watcher:
817
+ dependency: transitive
818
+ description:
819
+ name: watcher
820
+ sha256: "1398c9f081a753f9226febe8900fce8f7d0a67163334e1c94a2438339d79d635"
821
+ url: "https://pub.dev"
822
+ source: hosted
823
+ version: "1.2.1"
824
+ web:
825
+ dependency: "direct main"
826
+ description:
827
+ name: web
828
+ sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
829
+ url: "https://pub.dev"
830
+ source: hosted
831
+ version: "1.1.1"
832
+ web_socket:
833
+ dependency: transitive
834
+ description:
835
+ name: web_socket
836
+ sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
837
+ url: "https://pub.dev"
838
+ source: hosted
839
+ version: "1.0.1"
840
+ web_socket_channel:
841
+ dependency: transitive
842
+ description:
843
+ name: web_socket_channel
844
+ sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
845
+ url: "https://pub.dev"
846
+ source: hosted
847
+ version: "3.0.3"
848
+ win32:
849
+ dependency: transitive
850
+ description:
851
+ name: win32
852
+ sha256: d7cb55e04cd34096cd3a79b3330245f54cb96a370a1c27adb3c84b917de8b08e
853
+ url: "https://pub.dev"
854
+ source: hosted
855
+ version: "5.15.0"
856
+ xdg_directories:
857
+ dependency: transitive
858
+ description:
859
+ name: xdg_directories
860
+ sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
861
+ url: "https://pub.dev"
862
+ source: hosted
863
+ version: "1.1.0"
864
+ xml:
865
+ dependency: transitive
866
+ description:
867
+ name: xml
868
+ sha256: "971043b3a0d3da28727e40ed3e0b5d18b742fa5a68665cca88e74b7876d5e025"
869
+ url: "https://pub.dev"
870
+ source: hosted
871
+ version: "6.6.1"
872
+ yaml:
873
+ dependency: transitive
874
+ description:
875
+ name: yaml
876
+ sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
877
+ url: "https://pub.dev"
878
+ source: hosted
879
+ version: "3.1.3"
880
+ sdks:
881
+ dart: ">=3.10.0 <4.0.0"
882
+ flutter: ">=3.38.0"