@_nazmiforreal/flutter-ota 0.1.2 → 0.1.3
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.
- package/dart-src/packages/cli-tools/.dart_tool/package_config.json +496 -0
- package/dart-src/packages/cli-tools/.dart_tool/package_graph.json +743 -0
- package/dart-src/packages/cli-tools/lib/src/cli_base.dart +7 -6
- package/dart-src/packages/cli-tools/lib/src/commands/build.dart +46 -49
- package/dart-src/packages/cli-tools/lib/src/commands/bundle.dart +44 -23
- package/dart-src/packages/cli-tools/lib/src/commands/channel.dart +27 -17
- package/dart-src/packages/cli-tools/lib/src/commands/console.dart +11 -6
- package/dart-src/packages/cli-tools/lib/src/commands/deploy.dart +39 -22
- package/dart-src/packages/cli-tools/lib/src/commands/doctor.dart +22 -13
- package/dart-src/packages/cli-tools/lib/src/commands/init.dart +6 -5
- package/dart-src/packages/cli-tools/lib/src/commands/keys.dart +15 -9
- package/dart-src/packages/cli-tools/lib/src/commands/migrate.dart +14 -8
- package/dart-src/packages/cli-tools/lib/src/commands/rollback.dart +37 -12
- package/dart-src/packages/cli-tools/lib/src/operations.dart +45 -0
- package/dart-src/packages/cli-tools/lib/src/pack.dart +9 -0
- package/dart-src/packages/cli-tools/lib/src/ui/ui.dart +234 -0
- package/dart-src/packages/cli-tools/pubspec.lock +638 -0
- package/dart-src/packages/cli-tools/test/backends_test.dart +207 -0
- package/dart-src/packages/cli-tools/test/build_pack_test.dart +101 -0
- package/dart-src/packages/cli-tools/test/cli_test.dart +442 -0
- package/dart-src/packages/cli-tools/test/mocks/mock_aws_s3_client.dart +83 -0
- package/dart-src/packages/cli-tools/test/mocks/mock_d1_client.dart +256 -0
- package/dart-src/packages/cli-tools/test/mocks/mock_postgres_client.dart +347 -0
- package/dart-src/packages/cli-tools/test/standalone_backend_test.dart +315 -0
- package/dart-src/packages/core/test/rollout_test.dart +128 -0
- package/dart-src/packages/core/test/semver_test.dart +52 -0
- package/dart-src/packages/core/test/semver_vectors.json +1 -0
- package/dart-src/packages/core/test/types_test.dart +129 -0
- package/dart-src/packages/core/test/uuid_test.dart +38 -0
- package/dart-src/plugins/aws/test/aws_database_test.dart +167 -0
- package/dart-src/plugins/aws/test/aws_lambda_edge_storage_test.dart +190 -0
- package/dart-src/plugins/aws/test/aws_storage_test.dart +73 -0
- package/dart-src/plugins/aws/test/mock_aws_s3_client.dart +83 -0
- package/dart-src/plugins/cloudflare/test/cloudflare_worker_database_test.dart +122 -0
- package/dart-src/plugins/cloudflare/test/d1_bundle_mapper_test.dart +106 -0
- package/dart-src/plugins/cloudflare/test/d1_database_test.dart +190 -0
- package/dart-src/plugins/cloudflare/test/mock_d1_client.dart +256 -0
- package/dart-src/plugins/cloudflare/test/mock_r2_client.dart +83 -0
- package/dart-src/plugins/cloudflare/test/r2_storage_test.dart +77 -0
- package/dart-src/plugins/plugin-core/test/asset_storage_layout_test.dart +166 -0
- package/dart-src/plugins/plugin-core/test/bundle_unit_of_work_store_test.dart +74 -0
- package/dart-src/plugins/plugin-core/test/bundle_unit_of_work_test.dart +332 -0
- package/dart-src/plugins/plugin-core/test/create_blob_database_plugin_test.dart +711 -0
- package/dart-src/plugins/plugin-core/test/create_database_plugin_test.dart +294 -0
- package/dart-src/plugins/plugin-core/test/create_storage_plugin_test.dart +192 -0
- package/dart-src/plugins/plugin-core/test/generate_min_bundle_id_test.dart +51 -0
- package/dart-src/plugins/plugin-core/test/get_update_info_test.dart +1600 -0
- package/dart-src/plugins/plugin-core/test/helpers_test.dart +259 -0
- package/dart-src/plugins/plugin-core/test/query_bundles_test.dart +139 -0
- package/dart-src/plugins/plugin-core/test/request_update_bundle_state_test.dart +86 -0
- package/dart-src/plugins/plugin-core/test/uuidv7_test.dart +77 -0
- package/dart-src/plugins/postgres/test/mock_postgres_client.dart +297 -0
- package/dart-src/plugins/postgres/test/postgres_bundle_mapper_test.dart +140 -0
- package/dart-src/plugins/postgres/test/postgres_database_test.dart +181 -0
- package/dart-src/plugins/standalone/test/standalone_test.dart +264 -0
- package/dart-src/plugins/supabase/test/mock_supabase_client.dart +654 -0
- package/dart-src/plugins/supabase/test/supabase_bundle_mapper_test.dart +112 -0
- package/dart-src/plugins/supabase/test/supabase_database_test.dart +207 -0
- package/dart-src/plugins/supabase/test/supabase_storage_test.dart +175 -0
- package/package.json +1 -1
- package/scripts/vendor.sh +29 -0
|
@@ -0,0 +1,638 @@
|
|
|
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: "9a3386eea899815698dd55995277cf7cb8572ee52b399a6edfb7ae2b50e5fc19"
|
|
9
|
+
url: "https://pub.dev"
|
|
10
|
+
source: hosted
|
|
11
|
+
version: "105.0.0"
|
|
12
|
+
adaptive_number:
|
|
13
|
+
dependency: transitive
|
|
14
|
+
description:
|
|
15
|
+
name: adaptive_number
|
|
16
|
+
sha256: "3a567544e9b5c9c803006f51140ad544aedc79604fd4f3f2c1380003f97c1d77"
|
|
17
|
+
url: "https://pub.dev"
|
|
18
|
+
source: hosted
|
|
19
|
+
version: "1.0.0"
|
|
20
|
+
analyzer:
|
|
21
|
+
dependency: transitive
|
|
22
|
+
description:
|
|
23
|
+
name: analyzer
|
|
24
|
+
sha256: "62993bed6eadbe9596c5c20d5c167e7bc563c5fe266657a04ddeb93bdb84f4c9"
|
|
25
|
+
url: "https://pub.dev"
|
|
26
|
+
source: hosted
|
|
27
|
+
version: "14.1.0"
|
|
28
|
+
archive:
|
|
29
|
+
dependency: "direct main"
|
|
30
|
+
description:
|
|
31
|
+
name: archive
|
|
32
|
+
sha256: ace891da0862b0e4cabbb064ee3fd87b2728b898949fdb366d83fe98342c9f19
|
|
33
|
+
url: "https://pub.dev"
|
|
34
|
+
source: hosted
|
|
35
|
+
version: "4.2.0"
|
|
36
|
+
args:
|
|
37
|
+
dependency: "direct main"
|
|
38
|
+
description:
|
|
39
|
+
name: args
|
|
40
|
+
sha256: d0481093c50b1da8910eb0bb301626d4d8eb7284aa739614d2b394ee09e3ea04
|
|
41
|
+
url: "https://pub.dev"
|
|
42
|
+
source: hosted
|
|
43
|
+
version: "2.7.0"
|
|
44
|
+
asn1lib:
|
|
45
|
+
dependency: transitive
|
|
46
|
+
description:
|
|
47
|
+
name: asn1lib
|
|
48
|
+
sha256: "9a8f69025044eb466b9b60ef3bc3ac99b4dc6c158ae9c56d25eeccf5bc56d024"
|
|
49
|
+
url: "https://pub.dev"
|
|
50
|
+
source: hosted
|
|
51
|
+
version: "1.6.5"
|
|
52
|
+
async:
|
|
53
|
+
dependency: transitive
|
|
54
|
+
description:
|
|
55
|
+
name: async
|
|
56
|
+
sha256: e2eb0491ba5ddb6177742d2da23904574082139b07c1e33b8503b9f46f3e1a37
|
|
57
|
+
url: "https://pub.dev"
|
|
58
|
+
source: hosted
|
|
59
|
+
version: "2.13.1"
|
|
60
|
+
boolean_selector:
|
|
61
|
+
dependency: transitive
|
|
62
|
+
description:
|
|
63
|
+
name: boolean_selector
|
|
64
|
+
sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
|
|
65
|
+
url: "https://pub.dev"
|
|
66
|
+
source: hosted
|
|
67
|
+
version: "2.1.2"
|
|
68
|
+
buffer:
|
|
69
|
+
dependency: transitive
|
|
70
|
+
description:
|
|
71
|
+
name: buffer
|
|
72
|
+
sha256: "389da2ec2c16283c8787e0adaede82b1842102f8c8aae2f49003a766c5c6b3d1"
|
|
73
|
+
url: "https://pub.dev"
|
|
74
|
+
source: hosted
|
|
75
|
+
version: "1.2.3"
|
|
76
|
+
charcode:
|
|
77
|
+
dependency: transitive
|
|
78
|
+
description:
|
|
79
|
+
name: charcode
|
|
80
|
+
sha256: fb0f1107cac15a5ea6ef0a6ef71a807b9e4267c713bb93e00e92d737cc8dbd8a
|
|
81
|
+
url: "https://pub.dev"
|
|
82
|
+
source: hosted
|
|
83
|
+
version: "1.4.0"
|
|
84
|
+
cli_config:
|
|
85
|
+
dependency: transitive
|
|
86
|
+
description:
|
|
87
|
+
name: cli_config
|
|
88
|
+
sha256: ac20a183a07002b700f0c25e61b7ee46b23c309d76ab7b7640a028f18e4d99ec
|
|
89
|
+
url: "https://pub.dev"
|
|
90
|
+
source: hosted
|
|
91
|
+
version: "0.2.0"
|
|
92
|
+
clock:
|
|
93
|
+
dependency: transitive
|
|
94
|
+
description:
|
|
95
|
+
name: clock
|
|
96
|
+
sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
|
|
97
|
+
url: "https://pub.dev"
|
|
98
|
+
source: hosted
|
|
99
|
+
version: "1.1.2"
|
|
100
|
+
collection:
|
|
101
|
+
dependency: "direct main"
|
|
102
|
+
description:
|
|
103
|
+
name: collection
|
|
104
|
+
sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
|
|
105
|
+
url: "https://pub.dev"
|
|
106
|
+
source: hosted
|
|
107
|
+
version: "1.19.1"
|
|
108
|
+
convert:
|
|
109
|
+
dependency: transitive
|
|
110
|
+
description:
|
|
111
|
+
name: convert
|
|
112
|
+
sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
|
|
113
|
+
url: "https://pub.dev"
|
|
114
|
+
source: hosted
|
|
115
|
+
version: "3.1.2"
|
|
116
|
+
coverage:
|
|
117
|
+
dependency: transitive
|
|
118
|
+
description:
|
|
119
|
+
name: coverage
|
|
120
|
+
sha256: "956a3de0725ca232ad353565a8290d3357592bf4250f6f298a185e2d949c5d3d"
|
|
121
|
+
url: "https://pub.dev"
|
|
122
|
+
source: hosted
|
|
123
|
+
version: "1.15.1"
|
|
124
|
+
crypto:
|
|
125
|
+
dependency: "direct main"
|
|
126
|
+
description:
|
|
127
|
+
name: crypto
|
|
128
|
+
sha256: c8ea0233063ba03258fbcf2ca4d6dadfefe14f02fab57702265467a19f27fadf
|
|
129
|
+
url: "https://pub.dev"
|
|
130
|
+
source: hosted
|
|
131
|
+
version: "3.0.7"
|
|
132
|
+
cryptography:
|
|
133
|
+
dependency: "direct main"
|
|
134
|
+
description:
|
|
135
|
+
name: cryptography
|
|
136
|
+
sha256: "3eda3029d34ec9095a27a198ac9785630fe525c0eb6a49f3d575272f8e792ef0"
|
|
137
|
+
url: "https://pub.dev"
|
|
138
|
+
source: hosted
|
|
139
|
+
version: "2.9.0"
|
|
140
|
+
dart_jsonwebtoken:
|
|
141
|
+
dependency: transitive
|
|
142
|
+
description:
|
|
143
|
+
name: dart_jsonwebtoken
|
|
144
|
+
sha256: b268ff9bb87a16360a397f1accb50e7c781384e1119010b34f6d7c25820c44d8
|
|
145
|
+
url: "https://pub.dev"
|
|
146
|
+
source: hosted
|
|
147
|
+
version: "3.1.1"
|
|
148
|
+
ed25519_edwards:
|
|
149
|
+
dependency: transitive
|
|
150
|
+
description:
|
|
151
|
+
name: ed25519_edwards
|
|
152
|
+
sha256: f3c3b109a0e470ee35f6346a155cab290578660852237fce10df6bbd92758534
|
|
153
|
+
url: "https://pub.dev"
|
|
154
|
+
source: hosted
|
|
155
|
+
version: "0.3.2"
|
|
156
|
+
ffi:
|
|
157
|
+
dependency: transitive
|
|
158
|
+
description:
|
|
159
|
+
name: ffi
|
|
160
|
+
sha256: "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45"
|
|
161
|
+
url: "https://pub.dev"
|
|
162
|
+
source: hosted
|
|
163
|
+
version: "2.2.0"
|
|
164
|
+
file:
|
|
165
|
+
dependency: transitive
|
|
166
|
+
description:
|
|
167
|
+
name: file
|
|
168
|
+
sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
|
|
169
|
+
url: "https://pub.dev"
|
|
170
|
+
source: hosted
|
|
171
|
+
version: "7.0.1"
|
|
172
|
+
fixnum:
|
|
173
|
+
dependency: transitive
|
|
174
|
+
description:
|
|
175
|
+
name: fixnum
|
|
176
|
+
sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
|
|
177
|
+
url: "https://pub.dev"
|
|
178
|
+
source: hosted
|
|
179
|
+
version: "1.1.1"
|
|
180
|
+
flutter_patcher_aws:
|
|
181
|
+
dependency: "direct main"
|
|
182
|
+
description:
|
|
183
|
+
path: "../../plugins/aws"
|
|
184
|
+
relative: true
|
|
185
|
+
source: path
|
|
186
|
+
version: "0.1.0"
|
|
187
|
+
flutter_patcher_cloudflare:
|
|
188
|
+
dependency: "direct main"
|
|
189
|
+
description:
|
|
190
|
+
path: "../../plugins/cloudflare"
|
|
191
|
+
relative: true
|
|
192
|
+
source: path
|
|
193
|
+
version: "0.1.0"
|
|
194
|
+
flutter_patcher_core:
|
|
195
|
+
dependency: "direct main"
|
|
196
|
+
description:
|
|
197
|
+
path: "../core"
|
|
198
|
+
relative: true
|
|
199
|
+
source: path
|
|
200
|
+
version: "0.1.0"
|
|
201
|
+
flutter_patcher_plugin_core:
|
|
202
|
+
dependency: "direct main"
|
|
203
|
+
description:
|
|
204
|
+
path: "../../plugins/plugin-core"
|
|
205
|
+
relative: true
|
|
206
|
+
source: path
|
|
207
|
+
version: "0.0.1"
|
|
208
|
+
flutter_patcher_postgres:
|
|
209
|
+
dependency: "direct main"
|
|
210
|
+
description:
|
|
211
|
+
path: "../../plugins/postgres"
|
|
212
|
+
relative: true
|
|
213
|
+
source: path
|
|
214
|
+
version: "0.1.0"
|
|
215
|
+
flutter_patcher_standalone:
|
|
216
|
+
dependency: "direct main"
|
|
217
|
+
description:
|
|
218
|
+
path: "../../plugins/standalone"
|
|
219
|
+
relative: true
|
|
220
|
+
source: path
|
|
221
|
+
version: "0.1.0"
|
|
222
|
+
flutter_patcher_supabase:
|
|
223
|
+
dependency: "direct main"
|
|
224
|
+
description:
|
|
225
|
+
path: "../../plugins/supabase"
|
|
226
|
+
relative: true
|
|
227
|
+
source: path
|
|
228
|
+
version: "0.1.0"
|
|
229
|
+
frontend_server_client:
|
|
230
|
+
dependency: transitive
|
|
231
|
+
description:
|
|
232
|
+
name: frontend_server_client
|
|
233
|
+
sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694
|
|
234
|
+
url: "https://pub.dev"
|
|
235
|
+
source: hosted
|
|
236
|
+
version: "4.0.0"
|
|
237
|
+
functions_client:
|
|
238
|
+
dependency: transitive
|
|
239
|
+
description:
|
|
240
|
+
name: functions_client
|
|
241
|
+
sha256: e9685e9ab852a8b8e0579c867f6c9155da27317b294b3df796a536b8b8e0d253
|
|
242
|
+
url: "https://pub.dev"
|
|
243
|
+
source: hosted
|
|
244
|
+
version: "2.6.4"
|
|
245
|
+
glob:
|
|
246
|
+
dependency: transitive
|
|
247
|
+
description:
|
|
248
|
+
name: glob
|
|
249
|
+
sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
|
|
250
|
+
url: "https://pub.dev"
|
|
251
|
+
source: hosted
|
|
252
|
+
version: "2.1.3"
|
|
253
|
+
gotrue:
|
|
254
|
+
dependency: transitive
|
|
255
|
+
description:
|
|
256
|
+
name: gotrue
|
|
257
|
+
sha256: "360bba9606e58d5acc59a033ab64ae3cf571a6868f7a7267cb8e9a204b7bf1b2"
|
|
258
|
+
url: "https://pub.dev"
|
|
259
|
+
source: hosted
|
|
260
|
+
version: "2.26.0"
|
|
261
|
+
http:
|
|
262
|
+
dependency: "direct dev"
|
|
263
|
+
description:
|
|
264
|
+
name: http
|
|
265
|
+
sha256: "87721a4a50b19c7f1d49001e51409bddc46303966ce89a65af4f4e6004896412"
|
|
266
|
+
url: "https://pub.dev"
|
|
267
|
+
source: hosted
|
|
268
|
+
version: "1.6.0"
|
|
269
|
+
http_multi_server:
|
|
270
|
+
dependency: transitive
|
|
271
|
+
description:
|
|
272
|
+
name: http_multi_server
|
|
273
|
+
sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
|
|
274
|
+
url: "https://pub.dev"
|
|
275
|
+
source: hosted
|
|
276
|
+
version: "3.2.2"
|
|
277
|
+
http_parser:
|
|
278
|
+
dependency: transitive
|
|
279
|
+
description:
|
|
280
|
+
name: http_parser
|
|
281
|
+
sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
|
|
282
|
+
url: "https://pub.dev"
|
|
283
|
+
source: hosted
|
|
284
|
+
version: "4.1.2"
|
|
285
|
+
io:
|
|
286
|
+
dependency: transitive
|
|
287
|
+
description:
|
|
288
|
+
name: io
|
|
289
|
+
sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
|
|
290
|
+
url: "https://pub.dev"
|
|
291
|
+
source: hosted
|
|
292
|
+
version: "1.0.5"
|
|
293
|
+
js:
|
|
294
|
+
dependency: transitive
|
|
295
|
+
description:
|
|
296
|
+
name: js
|
|
297
|
+
sha256: "53385261521cc4a0c4658fd0ad07a7d14591cf8fc33abbceae306ddb974888dc"
|
|
298
|
+
url: "https://pub.dev"
|
|
299
|
+
source: hosted
|
|
300
|
+
version: "0.7.2"
|
|
301
|
+
jwt_decode:
|
|
302
|
+
dependency: transitive
|
|
303
|
+
description:
|
|
304
|
+
name: jwt_decode
|
|
305
|
+
sha256: d2e9f68c052b2225130977429d30f187aa1981d789c76ad104a32243cfdebfbb
|
|
306
|
+
url: "https://pub.dev"
|
|
307
|
+
source: hosted
|
|
308
|
+
version: "0.3.1"
|
|
309
|
+
logging:
|
|
310
|
+
dependency: transitive
|
|
311
|
+
description:
|
|
312
|
+
name: logging
|
|
313
|
+
sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
|
|
314
|
+
url: "https://pub.dev"
|
|
315
|
+
source: hosted
|
|
316
|
+
version: "1.3.0"
|
|
317
|
+
matcher:
|
|
318
|
+
dependency: transitive
|
|
319
|
+
description:
|
|
320
|
+
name: matcher
|
|
321
|
+
sha256: "31bd099b47c10cd1aeb55146a2d46ce0277630ecef3f7dae54ad7873f36696cd"
|
|
322
|
+
url: "https://pub.dev"
|
|
323
|
+
source: hosted
|
|
324
|
+
version: "0.12.20"
|
|
325
|
+
meta:
|
|
326
|
+
dependency: transitive
|
|
327
|
+
description:
|
|
328
|
+
name: meta
|
|
329
|
+
sha256: "307249ce4ff29d58a18e97f6345f539382eb9c9c29ecda628900f31de0443dd9"
|
|
330
|
+
url: "https://pub.dev"
|
|
331
|
+
source: hosted
|
|
332
|
+
version: "1.19.0"
|
|
333
|
+
mime:
|
|
334
|
+
dependency: transitive
|
|
335
|
+
description:
|
|
336
|
+
name: mime
|
|
337
|
+
sha256: "801fd0b26f14a4a58ccb09d5892c3fbdeff209594300a542492cf13fba9d247a"
|
|
338
|
+
url: "https://pub.dev"
|
|
339
|
+
source: hosted
|
|
340
|
+
version: "1.0.6"
|
|
341
|
+
node_preamble:
|
|
342
|
+
dependency: transitive
|
|
343
|
+
description:
|
|
344
|
+
name: node_preamble
|
|
345
|
+
sha256: "6e7eac89047ab8a8d26cf16127b5ed26de65209847630400f9aefd7cd5c730db"
|
|
346
|
+
url: "https://pub.dev"
|
|
347
|
+
source: hosted
|
|
348
|
+
version: "2.0.2"
|
|
349
|
+
package_config:
|
|
350
|
+
dependency: transitive
|
|
351
|
+
description:
|
|
352
|
+
name: package_config
|
|
353
|
+
sha256: ffcf4cf3d6c0b74ac43708d9f56625506e8a68aa935abe9d267a7330f320eb5d
|
|
354
|
+
url: "https://pub.dev"
|
|
355
|
+
source: hosted
|
|
356
|
+
version: "3.0.0"
|
|
357
|
+
path:
|
|
358
|
+
dependency: "direct main"
|
|
359
|
+
description:
|
|
360
|
+
name: path
|
|
361
|
+
sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
|
|
362
|
+
url: "https://pub.dev"
|
|
363
|
+
source: hosted
|
|
364
|
+
version: "1.9.1"
|
|
365
|
+
pointycastle:
|
|
366
|
+
dependency: transitive
|
|
367
|
+
description:
|
|
368
|
+
name: pointycastle
|
|
369
|
+
sha256: "4be0097fcf3fd3e8449e53730c631200ebc7b88016acecab2b0da2f0149222fe"
|
|
370
|
+
url: "https://pub.dev"
|
|
371
|
+
source: hosted
|
|
372
|
+
version: "3.9.1"
|
|
373
|
+
pool:
|
|
374
|
+
dependency: transitive
|
|
375
|
+
description:
|
|
376
|
+
name: pool
|
|
377
|
+
sha256: "978783255c543aa3586a1b3c21f6e9d720eb315376a915872c61ef8b5c20177d"
|
|
378
|
+
url: "https://pub.dev"
|
|
379
|
+
source: hosted
|
|
380
|
+
version: "1.5.2"
|
|
381
|
+
posix:
|
|
382
|
+
dependency: transitive
|
|
383
|
+
description:
|
|
384
|
+
name: posix
|
|
385
|
+
sha256: bc1bad54ad2b735816e31f8d4600cfde6c7839975085ddfbca48b6c9f7c4044e
|
|
386
|
+
url: "https://pub.dev"
|
|
387
|
+
source: hosted
|
|
388
|
+
version: "6.5.2"
|
|
389
|
+
postgres:
|
|
390
|
+
dependency: "direct main"
|
|
391
|
+
description:
|
|
392
|
+
name: postgres
|
|
393
|
+
sha256: "123de5cbadc56a7e8d9fa485c780b6b56940b4081f4c74f3a5578682757c299b"
|
|
394
|
+
url: "https://pub.dev"
|
|
395
|
+
source: hosted
|
|
396
|
+
version: "3.5.12"
|
|
397
|
+
postgrest:
|
|
398
|
+
dependency: transitive
|
|
399
|
+
description:
|
|
400
|
+
name: postgrest
|
|
401
|
+
sha256: "10e3f195e131eec944fa872644aed89b33b5be998f3fc77c87325db3927bc646"
|
|
402
|
+
url: "https://pub.dev"
|
|
403
|
+
source: hosted
|
|
404
|
+
version: "2.8.0"
|
|
405
|
+
pub_semver:
|
|
406
|
+
dependency: transitive
|
|
407
|
+
description:
|
|
408
|
+
name: pub_semver
|
|
409
|
+
sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585"
|
|
410
|
+
url: "https://pub.dev"
|
|
411
|
+
source: hosted
|
|
412
|
+
version: "2.2.0"
|
|
413
|
+
realtime_client:
|
|
414
|
+
dependency: transitive
|
|
415
|
+
description:
|
|
416
|
+
name: realtime_client
|
|
417
|
+
sha256: "0cfbe0047e2591eba348938e9b4e620d5b1a8df6c374757e8eb8645252b8387f"
|
|
418
|
+
url: "https://pub.dev"
|
|
419
|
+
source: hosted
|
|
420
|
+
version: "2.11.0"
|
|
421
|
+
retry:
|
|
422
|
+
dependency: transitive
|
|
423
|
+
description:
|
|
424
|
+
name: retry
|
|
425
|
+
sha256: "822e118d5b3aafed083109c72d5f484c6dc66707885e07c0fbcb8b986bba7efc"
|
|
426
|
+
url: "https://pub.dev"
|
|
427
|
+
source: hosted
|
|
428
|
+
version: "3.1.2"
|
|
429
|
+
rxdart:
|
|
430
|
+
dependency: transitive
|
|
431
|
+
description:
|
|
432
|
+
name: rxdart
|
|
433
|
+
sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962"
|
|
434
|
+
url: "https://pub.dev"
|
|
435
|
+
source: hosted
|
|
436
|
+
version: "0.28.0"
|
|
437
|
+
shelf:
|
|
438
|
+
dependency: transitive
|
|
439
|
+
description:
|
|
440
|
+
name: shelf
|
|
441
|
+
sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12
|
|
442
|
+
url: "https://pub.dev"
|
|
443
|
+
source: hosted
|
|
444
|
+
version: "1.4.2"
|
|
445
|
+
shelf_packages_handler:
|
|
446
|
+
dependency: transitive
|
|
447
|
+
description:
|
|
448
|
+
name: shelf_packages_handler
|
|
449
|
+
sha256: "89f967eca29607c933ba9571d838be31d67f53f6e4ee15147d5dc2934fee1b1e"
|
|
450
|
+
url: "https://pub.dev"
|
|
451
|
+
source: hosted
|
|
452
|
+
version: "3.0.2"
|
|
453
|
+
shelf_static:
|
|
454
|
+
dependency: transitive
|
|
455
|
+
description:
|
|
456
|
+
name: shelf_static
|
|
457
|
+
sha256: c87c3875f91262785dade62d135760c2c69cb217ac759485334c5857ad89f6e3
|
|
458
|
+
url: "https://pub.dev"
|
|
459
|
+
source: hosted
|
|
460
|
+
version: "1.1.3"
|
|
461
|
+
shelf_web_socket:
|
|
462
|
+
dependency: transitive
|
|
463
|
+
description:
|
|
464
|
+
name: shelf_web_socket
|
|
465
|
+
sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925"
|
|
466
|
+
url: "https://pub.dev"
|
|
467
|
+
source: hosted
|
|
468
|
+
version: "3.0.0"
|
|
469
|
+
source_map_stack_trace:
|
|
470
|
+
dependency: transitive
|
|
471
|
+
description:
|
|
472
|
+
name: source_map_stack_trace
|
|
473
|
+
sha256: c0713a43e323c3302c2abe2a1cc89aa057a387101ebd280371d6a6c9fa68516b
|
|
474
|
+
url: "https://pub.dev"
|
|
475
|
+
source: hosted
|
|
476
|
+
version: "2.1.2"
|
|
477
|
+
source_maps:
|
|
478
|
+
dependency: transitive
|
|
479
|
+
description:
|
|
480
|
+
name: source_maps
|
|
481
|
+
sha256: "14c2945847669b44089bb1222f66873d7ff7103c58911917f2a63c5a62327898"
|
|
482
|
+
url: "https://pub.dev"
|
|
483
|
+
source: hosted
|
|
484
|
+
version: "0.10.14"
|
|
485
|
+
source_span:
|
|
486
|
+
dependency: transitive
|
|
487
|
+
description:
|
|
488
|
+
name: source_span
|
|
489
|
+
sha256: "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab"
|
|
490
|
+
url: "https://pub.dev"
|
|
491
|
+
source: hosted
|
|
492
|
+
version: "1.10.2"
|
|
493
|
+
stack_trace:
|
|
494
|
+
dependency: transitive
|
|
495
|
+
description:
|
|
496
|
+
name: stack_trace
|
|
497
|
+
sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
|
|
498
|
+
url: "https://pub.dev"
|
|
499
|
+
source: hosted
|
|
500
|
+
version: "1.12.1"
|
|
501
|
+
storage_client:
|
|
502
|
+
dependency: transitive
|
|
503
|
+
description:
|
|
504
|
+
name: storage_client
|
|
505
|
+
sha256: "221263cfbe0c01575b7d7fe7543e44abff380eb4d38d936372844a1caa85ba12"
|
|
506
|
+
url: "https://pub.dev"
|
|
507
|
+
source: hosted
|
|
508
|
+
version: "2.6.0"
|
|
509
|
+
stream_channel:
|
|
510
|
+
dependency: transitive
|
|
511
|
+
description:
|
|
512
|
+
name: stream_channel
|
|
513
|
+
sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
|
|
514
|
+
url: "https://pub.dev"
|
|
515
|
+
source: hosted
|
|
516
|
+
version: "2.1.4"
|
|
517
|
+
string_scanner:
|
|
518
|
+
dependency: transitive
|
|
519
|
+
description:
|
|
520
|
+
name: string_scanner
|
|
521
|
+
sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
|
|
522
|
+
url: "https://pub.dev"
|
|
523
|
+
source: hosted
|
|
524
|
+
version: "1.4.1"
|
|
525
|
+
supabase:
|
|
526
|
+
dependency: transitive
|
|
527
|
+
description:
|
|
528
|
+
name: supabase
|
|
529
|
+
sha256: "3879996256325fcc9abb03b62b12c07e4eaae2e008e1bf043cc1525184159a43"
|
|
530
|
+
url: "https://pub.dev"
|
|
531
|
+
source: hosted
|
|
532
|
+
version: "2.14.0"
|
|
533
|
+
term_glyph:
|
|
534
|
+
dependency: transitive
|
|
535
|
+
description:
|
|
536
|
+
name: term_glyph
|
|
537
|
+
sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
|
|
538
|
+
url: "https://pub.dev"
|
|
539
|
+
source: hosted
|
|
540
|
+
version: "1.2.2"
|
|
541
|
+
test:
|
|
542
|
+
dependency: "direct dev"
|
|
543
|
+
description:
|
|
544
|
+
name: test
|
|
545
|
+
sha256: "0d5ba5602ec3baa28c8ce365e1efc5575969c765f45c554a3e167dc7945b9c30"
|
|
546
|
+
url: "https://pub.dev"
|
|
547
|
+
source: hosted
|
|
548
|
+
version: "1.31.2"
|
|
549
|
+
test_api:
|
|
550
|
+
dependency: transitive
|
|
551
|
+
description:
|
|
552
|
+
name: test_api
|
|
553
|
+
sha256: "475610b2aa23c19687cce2961e44b0cc57cafe220f67c2b80201231b2a07fbe7"
|
|
554
|
+
url: "https://pub.dev"
|
|
555
|
+
source: hosted
|
|
556
|
+
version: "0.7.13"
|
|
557
|
+
test_core:
|
|
558
|
+
dependency: transitive
|
|
559
|
+
description:
|
|
560
|
+
name: test_core
|
|
561
|
+
sha256: a39c204a4fc7a7ccb04a2b985e359fda3cc37e45e0b8ac61c3fb1a05aa832132
|
|
562
|
+
url: "https://pub.dev"
|
|
563
|
+
source: hosted
|
|
564
|
+
version: "0.6.19"
|
|
565
|
+
typed_data:
|
|
566
|
+
dependency: transitive
|
|
567
|
+
description:
|
|
568
|
+
name: typed_data
|
|
569
|
+
sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
|
|
570
|
+
url: "https://pub.dev"
|
|
571
|
+
source: hosted
|
|
572
|
+
version: "1.4.0"
|
|
573
|
+
vm_service:
|
|
574
|
+
dependency: transitive
|
|
575
|
+
description:
|
|
576
|
+
name: vm_service
|
|
577
|
+
sha256: "5f37239c4851efcef929cea7824e76df7f2f0970aef85d66bbc430afa40e72f0"
|
|
578
|
+
url: "https://pub.dev"
|
|
579
|
+
source: hosted
|
|
580
|
+
version: "15.3.0"
|
|
581
|
+
watcher:
|
|
582
|
+
dependency: transitive
|
|
583
|
+
description:
|
|
584
|
+
name: watcher
|
|
585
|
+
sha256: "1398c9f081a753f9226febe8900fce8f7d0a67163334e1c94a2438339d79d635"
|
|
586
|
+
url: "https://pub.dev"
|
|
587
|
+
source: hosted
|
|
588
|
+
version: "1.2.1"
|
|
589
|
+
web:
|
|
590
|
+
dependency: transitive
|
|
591
|
+
description:
|
|
592
|
+
name: web
|
|
593
|
+
sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
|
|
594
|
+
url: "https://pub.dev"
|
|
595
|
+
source: hosted
|
|
596
|
+
version: "1.1.1"
|
|
597
|
+
web_socket:
|
|
598
|
+
dependency: transitive
|
|
599
|
+
description:
|
|
600
|
+
name: web_socket
|
|
601
|
+
sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
|
|
602
|
+
url: "https://pub.dev"
|
|
603
|
+
source: hosted
|
|
604
|
+
version: "1.0.1"
|
|
605
|
+
web_socket_channel:
|
|
606
|
+
dependency: transitive
|
|
607
|
+
description:
|
|
608
|
+
name: web_socket_channel
|
|
609
|
+
sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
|
|
610
|
+
url: "https://pub.dev"
|
|
611
|
+
source: hosted
|
|
612
|
+
version: "3.0.3"
|
|
613
|
+
webkit_inspection_protocol:
|
|
614
|
+
dependency: transitive
|
|
615
|
+
description:
|
|
616
|
+
name: webkit_inspection_protocol
|
|
617
|
+
sha256: "87d3f2333bb240704cd3f1c6b5b7acd8a10e7f0bc28c28dcf14e782014f4a572"
|
|
618
|
+
url: "https://pub.dev"
|
|
619
|
+
source: hosted
|
|
620
|
+
version: "1.2.1"
|
|
621
|
+
yaml:
|
|
622
|
+
dependency: transitive
|
|
623
|
+
description:
|
|
624
|
+
name: yaml
|
|
625
|
+
sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
|
|
626
|
+
url: "https://pub.dev"
|
|
627
|
+
source: hosted
|
|
628
|
+
version: "3.1.3"
|
|
629
|
+
yet_another_json_isolate:
|
|
630
|
+
dependency: transitive
|
|
631
|
+
description:
|
|
632
|
+
name: yet_another_json_isolate
|
|
633
|
+
sha256: eaa26beb5990b25a49d942374fd5a0c5aa67a837e03b14b4c26134aaa1ed01a9
|
|
634
|
+
url: "https://pub.dev"
|
|
635
|
+
source: hosted
|
|
636
|
+
version: "2.1.1"
|
|
637
|
+
sdks:
|
|
638
|
+
dart: ">=3.11.0 <4.0.0"
|