feat: pin all dependencies to git sources (#3381)

cyan committed Aug 18, 2026 at 16:34 UTC be694edcc4b05179bc4498e6cd9c85919e6b1ef0
64 files changed +6252 -7159
.github/workflows/automated_integration_test.yml
+1 -4
@@ -159,11 +159,8 @@ jobs:
159 - name: Build generated code
160 run: |
161 flutter --version
162 - flutter clean
163 - rm -rf .dart_tool
164 - rm pubspec.lock
162 flutter pub get
166 - ./model_generator.sh async
163 + ./model_generator.sh
164
165 - name: Generate key properties
166 run: |
.github/workflows/compare_overrides.yml new
+55
@@ -0,0 +1,55 @@
1 +name: Check for dependency changes
2 +
3 +on:
4 + pull_request:
5 + types: [opened, synchronize, reopened]
6 +
7 +permissions:
8 + contents: read
9 + pull-requests: write
10 +
11 +jobs:
12 + compare-overrides:
13 + runs-on: ubuntu-24.04
14 +
15 + steps:
16 + - uses: actions/checkout@v4
17 + with:
18 + fetch-depth: 0
19 + ref: ${{ github.event.pull_request.head.sha }}
20 +
21 + - uses: actions/setup-go@v5
22 + with:
23 + go-version: stable
24 +
25 + - name: Compare pubspec overrides
26 + id: compare
27 + env:
28 + BASE_REF: ${{ github.event.pull_request.base.ref }}
29 + run: |
30 + git fetch origin "$BASE_REF"
31 + base_sha=$(git rev-parse "origin/$BASE_REF")
32 + head_sha="${{ github.event.pull_request.head.sha }}"
33 +
34 + ./scripts/compare_overrides.sh "$base_sha" "$head_sha" > /tmp/compare_output.txt
35 +
36 + if [[ ! -s /tmp/compare_output.txt ]]; then
37 + echo "has_output=false" >> "$GITHUB_OUTPUT"
38 + exit 0
39 + fi
40 +
41 + {
42 + echo '### changes in dependencies'
43 + echo
44 + echo '```'
45 + cat /tmp/compare_output.txt
46 + echo '```'
47 + } > /tmp/comment_body.md
48 +
49 + echo "has_output=true" >> "$GITHUB_OUTPUT"
50 +
51 + - uses: marocchino/sticky-pull-request-comment@v2
52 + if: steps.compare.outputs.has_output == 'true'
53 + with:
54 + header: pubspec-overrides-compare
55 + path: /tmp/comment_body.md
.github/workflows/pr_test_build_linux.yml
+12 -6
@@ -1,16 +1,15 @@
1 name: Cake Wallet Linux
2
3 -on: [pull_request]
4 -
3 permissions:
4 contents: read
5 packages: write
6
7 +on: [pull_request]
8 +
9 defaults:
10 run:
11 shell: bash
12
13 -
13 jobs:
14 PR_test_build:
15 runs-on: [Linux, amd64, forlinux]
@@ -28,6 +27,7 @@ jobs:
27 - /opt/cw_cache_linux/root/.pub-cache/:/root/.pub-cache
28 - /opt/cw_cache_linux/root/go/pkg:/root/go/pkg
29 - /opt/cw_cache_linux/opt/generic_cache:/opt/generic_cache
30 + - /var/run/docker.sock:/var/run/docker.sock
31
32 steps:
33 - name: Fix github actions messing up $HOME...
@@ -44,6 +44,14 @@ jobs:
44 with:
45 ref: ${{ github.event.pull_request.head.sha }}
46 repository: ${{ github.event.pull_request.head.repo.full_name }}
47 +
48 + - name: Log in to GitHub Container Registry
49 + uses: docker/login-action@v3
50 + with:
51 + registry: ghcr.io
52 + username: ${{ github.actor }}
53 + password: ${{ secrets.GITHUB_TOKEN }}
54 +
55 - name: configure git
56 run: |
57 git config --global --add safe.directory '*'
@@ -85,7 +93,6 @@ jobs:
93
94 echo "${{ secrets.MAIN_SECRETS_FILE }}" | base64 --decode > lib/.secrets.g.dart
95
88 -
96 - name: Build dependencies utilizing ghcr cache
97 run: |
98 env \
@@ -93,7 +100,6 @@ jobs:
100 CW_DOCKER_USE_CLOUD=true \
101 ./scripts/linux/docker/build.sh
102
96 -
103 - name: Execute Build and Setup Commands
104 run: |
105 pushd scripts/linux
@@ -107,7 +113,7 @@ jobs:
113
114 - name: Build generated code
115 run: |
110 - ./model_generator.sh async
116 + ./model_generator.sh
117
118 - name: Generate localization
119 run: |
.github/workflows/reusable-build.yml
+2 -6
@@ -125,12 +125,8 @@ jobs:
125
126 - name: Build generated code
127 run: |
128 - flutter --version
129 - flutter clean
130 - rm -rf .dart_tool
131 - rm pubspec.lock
132 - flutter pub get
133 - ./model_generator.sh async
128 + ./model_generator.sh
129 +
130
131 - name: Generate key properties
132 run: |
.gitignore
+2 -1
@@ -160,7 +160,6 @@ assets/images/app_logo.png
160 assets/new-ui/**/*.svg.vec
161
162 /pubspec.yaml
163 -/pubspec.lock
163 /android/app.properties
164 /android/app/src/main/AndroidManifest.xml
165
@@ -228,3 +227,5 @@ scripts/reown_flutter
227
228 *.salive
229 android/.kotlin
230 +scripts/.cache
231 +pubspec.lock
build.yaml new
+8
@@ -0,0 +1,8 @@
1 +targets:
2 + $default:
3 + sources:
4 + exclude:
5 + - "**/.secrets.g.dart"
6 + - "integration_test/**"
7 + - "test/**"
8 + - "tool/**"
configure_cake_wallet.sh
+1
@@ -35,6 +35,7 @@ fi
35
36 source ./app_env.sh cakewallet
37 ./app_config.sh
38 +echo "flutter pub get may take a while, please wait..."
39 cd ../.. && flutter pub get
40 dart run tool/generate_localization.dart
41 ./compile_graphics.sh
cw_bitcoin/build.yaml new
+5
@@ -0,0 +1,5 @@
1 +targets:
2 + $default:
3 + sources:
4 + exclude:
5 + - "**/.secrets.g.dart"
cw_bitcoin/pubspec.lock deleted
-1326
@@ -1,1326 +0,0 @@
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: "5b7468c326d2f8a4f630056404ca0d291ade42918f4a3c6233618e724f39da8e"
9 - url: "https://pub.dev"
10 - source: hosted
11 - version: "92.0.0"
12 - analyzer:
13 - dependency: transitive
14 - description:
15 - name: analyzer
16 - sha256: "70e4b1ef8003c64793a9e268a551a82869a8a96f39deb73dea28084b0e8bf75e"
17 - url: "https://pub.dev"
18 - source: hosted
19 - version: "9.0.0"
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 - asn1lib:
29 - dependency: transitive
30 - description:
31 - name: asn1lib
32 - sha256: "9a8f69025044eb466b9b60ef3bc3ac99b4dc6c158ae9c56d25eeccf5bc56d024"
33 - url: "https://pub.dev"
34 - source: hosted
35 - version: "1.6.5"
36 - async:
37 - dependency: transitive
38 - description:
39 - name: async
40 - sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
41 - url: "https://pub.dev"
42 - source: hosted
43 - version: "2.13.0"
44 - bbqrdart:
45 - dependency: "direct main"
46 - description:
47 - path: "."
48 - ref: e867e3d0156d0b29858100f30adc2625b9dae586
49 - resolved-ref: e867e3d0156d0b29858100f30adc2625b9dae586
50 - url: "https://github.com/mrcyjanek/bbqrdart"
51 - source: git
52 - version: "1.0.0"
53 - bech32:
54 - dependency: transitive
55 - description:
56 - path: "."
57 - ref: HEAD
58 - resolved-ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
59 - url: "https://github.com/cake-tech/bech32.git"
60 - source: git
61 - version: "0.2.2"
62 - bip32:
63 - dependency: transitive
64 - description:
65 - name: bip32
66 - sha256: "54787cd7a111e9d37394aabbf53d1fc5e2e0e0af2cd01c459147a97c0e3f8a97"
67 - url: "https://pub.dev"
68 - source: hosted
69 - version: "2.0.0"
70 - bip39:
71 - dependency: transitive
72 - description:
73 - name: bip39
74 - sha256: de1ee27ebe7d96b84bb3a04a4132a0a3007dcdd5ad27dd14aa87a29d97c45edc
75 - url: "https://pub.dev"
76 - source: hosted
77 - version: "1.0.6"
78 - bitbox:
79 - dependency: "direct main"
80 - description:
81 - path: "."
82 - ref: Add-Support-For-OP-Return-data
83 - resolved-ref: "57b78afb85bd2c30d3cdb9f7884f3878a62be442"
84 - url: "https://github.com/cake-tech/bitbox-flutter.git"
85 - source: git
86 - version: "1.0.1"
87 - bitbox_flutter:
88 - dependency: "direct main"
89 - description:
90 - path: "../scripts/bitbox_flutter"
91 - relative: true
92 - source: path
93 - version: "0.0.1"
94 - bitcoin_base:
95 - dependency: "direct overridden"
96 - description:
97 - path: "."
98 - ref: cake-update-v11
99 - resolved-ref: bda0e2904effa799ec835b4578cc3fc5d31caa78
100 - url: "https://github.com/cake-tech/bitcoin_base"
101 - source: git
102 - version: "4.7.0"
103 - blockchain_utils:
104 - dependency: "direct main"
105 - description:
106 - path: "."
107 - ref: cake-update-v2
108 - resolved-ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
109 - url: "https://github.com/cake-tech/blockchain_utils"
110 - source: git
111 - version: "3.3.0"
112 - bluez:
113 - dependency: transitive
114 - description:
115 - name: bluez
116 - sha256: "61a7204381925896a374301498f2f5399e59827c6498ae1e924aaa598751b545"
117 - url: "https://pub.dev"
118 - source: hosted
119 - version: "0.8.3"
120 - boolean_selector:
121 - dependency: transitive
122 - description:
123 - name: boolean_selector
124 - sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
125 - url: "https://pub.dev"
126 - source: hosted
127 - version: "2.1.2"
128 - breez_sdk_spark_flutter:
129 - dependency: "direct main"
130 - description:
131 - path: "."
132 - ref: "v0.14.0"
133 - resolved-ref: e18b6437daaf0572de6aea2439c2ec4d22658bbb
134 - url: "https://github.com/breez/breez-sdk-spark-flutter"
135 - source: git
136 - version: "0.14.0"
137 - bs58check:
138 - dependency: transitive
139 - description:
140 - name: bs58check
141 - sha256: c4a164d42b25c2f6bc88a8beccb9fc7d01440f3c60ba23663a20a70faf484ea9
142 - url: "https://pub.dev"
143 - source: hosted
144 - version: "1.0.2"
145 - build:
146 - dependency: transitive
147 - description:
148 - name: build
149 - sha256: a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10
150 - url: "https://pub.dev"
151 - source: hosted
152 - version: "4.0.6"
153 - build_cli_annotations:
154 - dependency: transitive
155 - description:
156 - name: build_cli_annotations
157 - sha256: b59d2769769efd6c9ff6d4c4cede0be115a566afc591705c2040b707534b1172
158 - url: "https://pub.dev"
159 - source: hosted
160 - version: "2.1.0"
161 - build_config:
162 - dependency: transitive
163 - description:
164 - name: build_config
165 - sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71"
166 - url: "https://pub.dev"
167 - source: hosted
168 - version: "1.3.0"
169 - build_daemon:
170 - dependency: transitive
171 - description:
172 - name: build_daemon
173 - sha256: "8e928697a82be082206edb0b9c99c5a4ad6bc31c9e9b8b2f291ae65cd4a25daa"
174 - url: "https://pub.dev"
175 - source: hosted
176 - version: "4.0.4"
177 - build_runner:
178 - dependency: "direct dev"
179 - description:
180 - name: build_runner
181 - sha256: "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6"
182 - url: "https://pub.dev"
183 - source: hosted
184 - version: "2.15.0"
185 - built_collection:
186 - dependency: transitive
187 - description:
188 - name: built_collection
189 - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
190 - url: "https://pub.dev"
191 - source: hosted
192 - version: "5.1.1"
193 - built_value:
194 - dependency: transitive
195 - description:
196 - name: built_value
197 - sha256: ba95c961bafcd8686d1cf63be864eb59447e795e124d98d6a27d91fcd13602fb
198 - url: "https://pub.dev"
199 - source: hosted
200 - version: "8.11.1"
201 - cake_backup:
202 - dependency: transitive
203 - description:
204 - path: "."
205 - ref: main
206 - resolved-ref: "3aba867dcab6737f6707782f5db15d71f303db38"
207 - url: "https://github.com/cake-tech/cake_backup.git"
208 - source: git
209 - version: "1.0.0+1"
210 - characters:
211 - dependency: transitive
212 - description:
213 - name: characters
214 - sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
215 - url: "https://pub.dev"
216 - source: hosted
217 - version: "1.4.1"
218 - checked_yaml:
219 - dependency: transitive
220 - description:
221 - name: checked_yaml
222 - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
223 - url: "https://pub.dev"
224 - source: hosted
225 - version: "2.0.3"
226 - cli_util:
227 - dependency: transitive
228 - description:
229 - name: cli_util
230 - sha256: ff6785f7e9e3c38ac98b2fb035701789de90154024a75b6cb926445e83197d1c
231 - url: "https://pub.dev"
232 - source: hosted
233 - version: "0.4.2"
234 - clock:
235 - dependency: transitive
236 - description:
237 - name: clock
238 - sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
239 - url: "https://pub.dev"
240 - source: hosted
241 - version: "1.1.2"
242 - code_builder:
243 - dependency: transitive
244 - description:
245 - name: code_builder
246 - sha256: "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e"
247 - url: "https://pub.dev"
248 - source: hosted
249 - version: "4.10.1"
250 - collection:
251 - dependency: transitive
252 - description:
253 - name: collection
254 - sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
255 - url: "https://pub.dev"
256 - source: hosted
257 - version: "1.19.1"
258 - convert:
259 - dependency: transitive
260 - description:
261 - name: convert
262 - sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
263 - url: "https://pub.dev"
264 - source: hosted
265 - version: "3.1.2"
266 - crypto:
267 - dependency: transitive
268 - description:
269 - name: crypto
270 - sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
271 - url: "https://pub.dev"
272 - source: hosted
273 - version: "3.0.6"
274 - cryptography:
275 - dependency: "direct main"
276 - description:
277 - name: cryptography
278 - sha256: d146b76d33d94548cf035233fbc2f4338c1242fa119013bead807d033fc4ae05
279 - url: "https://pub.dev"
280 - source: hosted
281 - version: "2.7.0"
282 - cupertino_icons:
283 - dependency: transitive
284 - description:
285 - name: cupertino_icons
286 - sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
287 - url: "https://pub.dev"
288 - source: hosted
289 - version: "1.0.8"
290 - cw_core:
291 - dependency: "direct main"
292 - description:
293 - path: "../cw_core"
294 - relative: true
295 - source: path
296 - version: "0.0.1"
297 - cw_mweb:
298 - dependency: "direct main"
299 - description:
300 - path: "../cw_mweb"
301 - relative: true
302 - source: path
303 - version: "0.0.1"
304 - dart_style:
305 - dependency: transitive
306 - description:
307 - name: dart_style
308 - sha256: a9c30492da18ff84efe2422ba2d319a89942d93e58eb0b73d32abe822ef54b7b
309 - url: "https://pub.dev"
310 - source: hosted
311 - version: "3.1.3"
312 - dart_varuint_bitcoin:
313 - dependency: transitive
314 - description:
315 - name: dart_varuint_bitcoin
316 - sha256: "4f0ccc9733fb54148b9d3688eea822b7aaabf5cc00025998f8c09a1d45b31b4b"
317 - url: "https://pub.dev"
318 - source: hosted
319 - version: "1.0.3"
320 - dbus:
321 - dependency: transitive
322 - description:
323 - name: dbus
324 - sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
325 - url: "https://pub.dev"
326 - source: hosted
327 - version: "0.7.11"
328 - decimal:
329 - dependency: transitive
330 - description:
331 - name: decimal
332 - sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21"
333 - url: "https://pub.dev"
334 - source: hosted
335 - version: "2.3.3"
336 - encrypt:
337 - dependency: transitive
338 - description:
339 - name: encrypt
340 - sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2"
341 - url: "https://pub.dev"
342 - source: hosted
343 - version: "5.0.3"
344 - fake_async:
345 - dependency: transitive
346 - description:
347 - name: fake_async
348 - sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
349 - url: "https://pub.dev"
350 - source: hosted
351 - version: "1.3.3"
352 - ffi:
353 - dependency: "direct overridden"
354 - description:
355 - name: ffi
356 - sha256: "7bf0adc28a23d395f19f3f1eb21dd7cfd1dd9f8e1c50051c069122e6853bc878"
357 - url: "https://pub.dev"
358 - source: hosted
359 - version: "2.1.0"
360 - ffigen:
361 - dependency: transitive
362 - description:
363 - name: ffigen
364 - sha256: "3e12e80ccb6539bb3917217bb6f32709220efb737de0d0fa8736da0b7cb507da"
365 - url: "https://pub.dev"
366 - source: hosted
367 - version: "12.0.0"
368 - file:
369 - dependency: transitive
370 - description:
371 - name: file
372 - sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
373 - url: "https://pub.dev"
374 - source: hosted
375 - version: "7.0.1"
376 - fixnum:
377 - dependency: transitive
378 - description:
379 - name: fixnum
380 - sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
381 - url: "https://pub.dev"
382 - source: hosted
383 - version: "1.1.1"
384 - flutter:
385 - dependency: "direct main"
386 - description: flutter
387 - source: sdk
388 - version: "0.0.0"
389 - flutter_mobx:
390 - dependency: "direct main"
391 - description:
392 - name: flutter_mobx
393 - sha256: ba5e93467866a2991259dc51cffd41ef45f695c667c2b8e7b087bf24118b50fe
394 - url: "https://pub.dev"
395 - source: hosted
396 - version: "2.3.0"
397 - flutter_rust_bridge:
398 - dependency: transitive
399 - description:
400 - name: flutter_rust_bridge
401 - sha256: "37ef40bc6f863652e865f0b2563ea07f0d3c58d8efad803cc01933a4b2ee067e"
402 - url: "https://pub.dev"
403 - source: hosted
404 - version: "2.11.1"
405 - flutter_test:
406 - dependency: "direct dev"
407 - description: flutter
408 - source: sdk
409 - version: "0.0.0"
410 - flutter_web_bluetooth:
411 - dependency: transitive
412 - description:
413 - name: flutter_web_bluetooth
414 - sha256: ad26a1b3fef95b86ea5f63793b9a0cdc1a33490f35d754e4e711046cae3ebbf8
415 - url: "https://pub.dev"
416 - source: hosted
417 - version: "1.1.0"
418 - flutter_web_plugins:
419 - dependency: transitive
420 - description: flutter
421 - source: sdk
422 - version: "0.0.0"
423 - freezed_annotation:
424 - dependency: transitive
425 - description:
426 - name: freezed_annotation
427 - sha256: "7294967ff0a6d98638e7acb774aac3af2550777accd8149c90af5b014e6d44d8"
428 - url: "https://pub.dev"
429 - source: hosted
430 - version: "3.1.0"
431 - glob:
432 - dependency: transitive
433 - description:
434 - name: glob
435 - sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
436 - url: "https://pub.dev"
437 - source: hosted
438 - version: "2.1.3"
439 - google_identity_services_web:
440 - dependency: transitive
441 - description:
442 - name: google_identity_services_web
443 - sha256: "5d187c46dc59e02646e10fe82665fc3884a9b71bc1c90c2b8b749316d33ee454"
444 - url: "https://pub.dev"
445 - source: hosted
446 - version: "0.3.3+1"
447 - googleapis_auth:
448 - dependency: transitive
449 - description:
450 - name: googleapis_auth
451 - sha256: befd71383a955535060acde8792e7efc11d2fccd03dd1d3ec434e85b68775938
452 - url: "https://pub.dev"
453 - source: hosted
454 - version: "1.6.0"
455 - graphs:
456 - dependency: transitive
457 - description:
458 - name: graphs
459 - sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
460 - url: "https://pub.dev"
461 - source: hosted
462 - version: "2.3.2"
463 - grpc:
464 - dependency: "direct main"
465 - description:
466 - name: grpc
467 - sha256: "5b99b7a420937d4361ece68b798c9af8e04b5bc128a7859f2a4be87427694813"
468 - url: "https://pub.dev"
469 - source: hosted
470 - version: "4.0.1"
471 - hex:
472 - dependency: transitive
473 - description:
474 - name: hex
475 - sha256: "4e7cd54e4b59ba026432a6be2dd9d96e4c5205725194997193bf871703b82c4a"
476 - url: "https://pub.dev"
477 - source: hosted
478 - version: "0.2.0"
479 - hive:
480 - dependency: "direct dev"
481 - description:
482 - name: hive
483 - sha256: "5184b6ea455689754578267c31c3b0b329cccf20a5f2bfdab6941c29c3d3c09a"
484 - url: "https://pub.dev"
485 - source: hosted
486 - version: "2.0.1"
487 - http:
488 - dependency: "direct main"
489 - description:
490 - name: http
491 - sha256: bb2ce4590bc2667c96f318d68cac1b5a7987ec819351d32b1c987239a815e007
492 - url: "https://pub.dev"
493 - source: hosted
494 - version: "1.5.0"
495 - http2:
496 - dependency: transitive
497 - description:
498 - name: http2
499 - sha256: "382d3aefc5bd6dc68c6b892d7664f29b5beb3251611ae946a98d35158a82bbfa"
500 - url: "https://pub.dev"
501 - source: hosted
502 - version: "2.3.1"
503 - http_multi_server:
504 - dependency: transitive
505 - description:
506 - name: http_multi_server
507 - sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
508 - url: "https://pub.dev"
509 - source: hosted
510 - version: "3.2.2"
511 - http_parser:
512 - dependency: transitive
513 - description:
514 - name: http_parser
515 - sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
516 - url: "https://pub.dev"
517 - source: hosted
518 - version: "4.1.2"
519 - intl:
520 - dependency: "direct main"
521 - description:
522 - name: intl
523 - sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
524 - url: "https://pub.dev"
525 - source: hosted
526 - version: "0.19.0"
527 - io:
528 - dependency: transitive
529 - description:
530 - name: io
531 - sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
532 - url: "https://pub.dev"
533 - source: hosted
534 - version: "1.0.5"
535 - js:
536 - dependency: transitive
537 - description:
538 - name: js
539 - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
540 - url: "https://pub.dev"
541 - source: hosted
542 - version: "0.6.7"
543 - json_annotation:
544 - dependency: transitive
545 - description:
546 - name: json_annotation
547 - sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
548 - url: "https://pub.dev"
549 - source: hosted
550 - version: "4.9.0"
551 - leak_tracker:
552 - dependency: transitive
553 - description:
554 - name: leak_tracker
555 - sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
556 - url: "https://pub.dev"
557 - source: hosted
558 - version: "11.0.2"
559 - leak_tracker_flutter_testing:
560 - dependency: transitive
561 - description:
562 - name: leak_tracker_flutter_testing
563 - sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
564 - url: "https://pub.dev"
565 - source: hosted
566 - version: "3.0.10"
567 - leak_tracker_testing:
568 - dependency: transitive
569 - description:
570 - name: leak_tracker_testing
571 - sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
572 - url: "https://pub.dev"
573 - source: hosted
574 - version: "3.0.2"
575 - ledger_bitcoin:
576 - dependency: "direct main"
577 - description:
578 - path: "packages/ledger-bitcoin"
579 - ref: "75bba8632c529debf30ee2b1858530009fa6440b"
580 - resolved-ref: "75bba8632c529debf30ee2b1858530009fa6440b"
581 - url: "https://github.com/cake-tech/ledger-flutter-plus-plugins"
582 - source: git
583 - version: "0.0.3"
584 - ledger_flutter_plus:
585 - dependency: "direct main"
586 - description:
587 - name: ledger_flutter_plus
588 - sha256: "531da5daba5731d9eca2732881ef2f039b97bf8aa3564e7098dfa99a9b07a8e6"
589 - url: "https://pub.dev"
590 - source: hosted
591 - version: "1.5.3"
592 - ledger_litecoin:
593 - dependency: "direct main"
594 - description:
595 - path: "packages/ledger-litecoin"
596 - ref: HEAD
597 - resolved-ref: e8ab1a98493dfdd2277edde07a66b8d378ca70f6
598 - url: "https://github.com/cake-tech/ledger-flutter-plus-plugins"
599 - source: git
600 - version: "0.0.2"
601 - ledger_usb_plus:
602 - dependency: transitive
603 - description:
604 - name: ledger_usb_plus
605 - sha256: "21cc5d976cf7edb3518bd2a0c4164139cbb0817d2e4f2054707fc4edfdf9ce87"
606 - url: "https://pub.dev"
607 - source: hosted
608 - version: "1.0.4"
609 - logging:
610 - dependency: transitive
611 - description:
612 - name: logging
613 - sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
614 - url: "https://pub.dev"
615 - source: hosted
616 - version: "1.3.0"
617 - matcher:
618 - dependency: transitive
619 - description:
620 - name: matcher
621 - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861
622 - url: "https://pub.dev"
623 - source: hosted
624 - version: "0.12.19"
625 - material_color_utilities:
626 - dependency: transitive
627 - description:
628 - name: material_color_utilities
629 - sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
630 - url: "https://pub.dev"
631 - source: hosted
632 - version: "0.13.0"
633 - meta:
634 - dependency: transitive
635 - description:
636 - name: meta
637 - sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
638 - url: "https://pub.dev"
639 - source: hosted
640 - version: "1.17.0"
641 - mime:
642 - dependency: transitive
643 - description:
644 - name: mime
645 - sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
646 - url: "https://pub.dev"
647 - source: hosted
648 - version: "2.0.0"
649 - mobx:
650 - dependency: "direct main"
651 - description:
652 - name: mobx
653 - sha256: "25ea9a3ee69243d578fb6288721d8eeb18550d0391c32f896d377d994154bff2"
654 - url: "https://pub.dev"
655 - source: hosted
656 - version: "2.6.0"
657 - mobx_codegen:
658 - dependency: "direct dev"
659 - description:
660 - name: mobx_codegen
661 - sha256: "6529bcae074838004b58ad01fbe4966be182a176aacfb723686985986ebac19f"
662 - url: "https://pub.dev"
663 - source: hosted
664 - version: "2.7.7"
665 - mockito:
666 - dependency: transitive
667 - description:
668 - name: mockito
669 - sha256: eff30d002f0c8bf073b6f929df4483b543133fcafce056870163587b03f1d422
670 - url: "https://pub.dev"
671 - source: hosted
672 - version: "5.6.4"
673 - nested:
674 - dependency: transitive
675 - description:
676 - name: nested
677 - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
678 - url: "https://pub.dev"
679 - source: hosted
680 - version: "1.0.0"
681 - on_chain:
682 - dependency: transitive
683 - description:
684 - path: "."
685 - ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
686 - resolved-ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
687 - url: "https://github.com/cake-tech/on_chain.git"
688 - source: git
689 - version: "3.7.0"
690 - package_config:
691 - dependency: transitive
692 - description:
693 - name: package_config
694 - sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc
695 - url: "https://pub.dev"
696 - source: hosted
697 - version: "2.2.0"
698 - path:
699 - dependency: transitive
700 - description:
701 - name: path
702 - sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
703 - url: "https://pub.dev"
704 - source: hosted
705 - version: "1.9.1"
706 - path_provider:
707 - dependency: "direct main"
708 - description:
709 - name: path_provider
710 - sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
711 - url: "https://pub.dev"
712 - source: hosted
713 - version: "2.1.5"
714 - path_provider_android:
715 - dependency: transitive
716 - description:
717 - name: path_provider_android
718 - sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
719 - url: "https://pub.dev"
720 - source: hosted
721 - version: "2.2.17"
722 - path_provider_foundation:
723 - dependency: transitive
724 - description:
725 - name: path_provider_foundation
726 - sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
727 - url: "https://pub.dev"
728 - source: hosted
729 - version: "2.4.1"
730 - path_provider_linux:
731 - dependency: transitive
732 - description:
733 - name: path_provider_linux
734 - sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
735 - url: "https://pub.dev"
736 - source: hosted
737 - version: "2.2.1"
738 - path_provider_platform_interface:
739 - dependency: transitive
740 - description:
741 - name: path_provider_platform_interface
742 - sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
743 - url: "https://pub.dev"
744 - source: hosted
745 - version: "2.1.2"
746 - path_provider_windows:
747 - dependency: transitive
748 - description:
749 - name: path_provider_windows
750 - sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
751 - url: "https://pub.dev"
752 - source: hosted
753 - version: "2.3.0"
754 - payjoin_flutter:
755 - dependency: "direct main"
756 - description:
757 - path: "."
758 - ref: b28c825b1d63381e8c2b25ef2ccabacbf833ce53
759 - resolved-ref: b28c825b1d63381e8c2b25ef2ccabacbf833ce53
760 - url: "https://github.com/konstantinullrich/payjoin-flutter"
761 - source: git
762 - version: "0.23.0"
763 - petitparser:
764 - dependency: transitive
765 - description:
766 - name: petitparser
767 - sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27
768 - url: "https://pub.dev"
769 - source: hosted
770 - version: "6.0.2"
771 - platform:
772 - dependency: transitive
773 - description:
774 - name: platform
775 - sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
776 - url: "https://pub.dev"
777 - source: hosted
778 - version: "3.1.6"
779 - plugin_platform_interface:
780 - dependency: transitive
781 - description:
782 - name: plugin_platform_interface
783 - sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
784 - url: "https://pub.dev"
785 - source: hosted
786 - version: "2.1.8"
787 - pointycastle:
788 - dependency: "direct overridden"
789 - description:
790 - name: pointycastle
791 - sha256: "43ac87de6e10afabc85c445745a7b799e04de84cebaa4fd7bf55a5e1e9604d29"
792 - url: "https://pub.dev"
793 - source: hosted
794 - version: "3.7.4"
795 - pool:
796 - dependency: transitive
797 - description:
798 - name: pool
799 - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
800 - url: "https://pub.dev"
801 - source: hosted
802 - version: "1.5.1"
803 - protobuf:
804 - dependency: "direct overridden"
805 - description:
806 - name: protobuf
807 - sha256: "68645b24e0716782e58948f8467fd42a880f255096a821f9e7d0ec625b00c84d"
808 - url: "https://pub.dev"
809 - source: hosted
810 - version: "3.1.0"
811 - provider:
812 - dependency: transitive
813 - description:
814 - name: provider
815 - sha256: "4abbd070a04e9ddc287673bf5a030c7ca8b685ff70218720abab8b092f53dd84"
816 - url: "https://pub.dev"
817 - source: hosted
818 - version: "6.1.5"
819 - pub_semver:
820 - dependency: transitive
821 - description:
822 - name: pub_semver
823 - sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585"
824 - url: "https://pub.dev"
825 - source: hosted
826 - version: "2.2.0"
827 - pubspec_parse:
828 - dependency: transitive
829 - description:
830 - name: pubspec_parse
831 - sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082"
832 - url: "https://pub.dev"
833 - source: hosted
834 - version: "1.5.0"
835 - quiver:
836 - dependency: transitive
837 - description:
838 - name: quiver
839 - sha256: ea0b925899e64ecdfbf9c7becb60d5b50e706ade44a85b2363be2a22d88117d2
840 - url: "https://pub.dev"
841 - source: hosted
842 - version: "3.2.2"
843 - rational:
844 - dependency: transitive
845 - description:
846 - name: rational
847 - sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336
848 - url: "https://pub.dev"
849 - source: hosted
850 - version: "2.2.3"
851 - rxdart:
852 - dependency: "direct main"
853 - description:
854 - name: rxdart
855 - sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962"
856 - url: "https://pub.dev"
857 - source: hosted
858 - version: "0.28.0"
859 - shared_preferences:
860 - dependency: "direct main"
861 - description:
862 - name: shared_preferences
863 - sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5"
864 - url: "https://pub.dev"
865 - source: hosted
866 - version: "2.5.3"
867 - shared_preferences_android:
868 - dependency: transitive
869 - description:
870 - name: shared_preferences_android
871 - sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
872 - url: "https://pub.dev"
873 - source: hosted
874 - version: "2.4.11"
875 - shared_preferences_foundation:
876 - dependency: transitive
877 - description:
878 - name: shared_preferences_foundation
879 - sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
880 - url: "https://pub.dev"
881 - source: hosted
882 - version: "2.5.4"
883 - shared_preferences_linux:
884 - dependency: transitive
885 - description:
886 - name: shared_preferences_linux
887 - sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
888 - url: "https://pub.dev"
889 - source: hosted
890 - version: "2.4.1"
891 - shared_preferences_platform_interface:
892 - dependency: transitive
893 - description:
894 - name: shared_preferences_platform_interface
895 - sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
896 - url: "https://pub.dev"
897 - source: hosted
898 - version: "2.4.1"
899 - shared_preferences_web:
900 - dependency: transitive
901 - description:
902 - name: shared_preferences_web
903 - sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019
904 - url: "https://pub.dev"
905 - source: hosted
906 - version: "2.4.3"
907 - shared_preferences_windows:
908 - dependency: transitive
909 - description:
910 - name: shared_preferences_windows
911 - sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
912 - url: "https://pub.dev"
913 - source: hosted
914 - version: "2.4.1"
915 - shelf:
916 - dependency: transitive
917 - description:
918 - name: shelf
919 - sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12
920 - url: "https://pub.dev"
921 - source: hosted
922 - version: "1.4.2"
923 - shelf_web_socket:
924 - dependency: transitive
925 - description:
926 - name: shelf_web_socket
927 - sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925"
928 - url: "https://pub.dev"
929 - source: hosted
930 - version: "3.0.0"
931 - sky_engine:
932 - dependency: transitive
933 - description: flutter
934 - source: sdk
935 - version: "0.0.0"
936 - socks5_proxy:
937 - dependency: transitive
938 - description:
939 - path: "."
940 - ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
941 - resolved-ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
942 - url: "https://github.com/LacticWhale/socks_dart"
943 - source: git
944 - version: "2.1.0"
945 - socks_socket:
946 - dependency: "direct main"
947 - description:
948 - path: "."
949 - ref: e6232c53c1595469931ababa878759a067c02e94
950 - resolved-ref: e6232c53c1595469931ababa878759a067c02e94
951 - url: "https://github.com/sneurlax/socks_socket"
952 - source: git
953 - version: "1.1.1"
954 - source_gen:
955 - dependency: transitive
956 - description:
957 - name: source_gen
958 - sha256: ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02
959 - url: "https://pub.dev"
960 - source: hosted
961 - version: "4.2.3"
962 - source_span:
963 - dependency: transitive
964 - description:
965 - name: source_span
966 - sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
967 - url: "https://pub.dev"
968 - source: hosted
969 - version: "1.10.1"
970 - sp_scanner:
971 - dependency: "direct main"
972 - description:
973 - path: "."
974 - ref: "sp_v4.0.1"
975 - resolved-ref: "40ed3ce8319744907bef3b25bc6e0af8428c8724"
976 - url: "https://github.com/cake-tech/sp_scanner"
977 - source: git
978 - version: "0.0.1"
979 - sprintf:
980 - dependency: transitive
981 - description:
982 - name: sprintf
983 - sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23"
984 - url: "https://pub.dev"
985 - source: hosted
986 - version: "7.0.0"
987 - sqflite:
988 - dependency: transitive
989 - description:
990 - name: sqflite
991 - sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb"
992 - url: "https://pub.dev"
993 - source: hosted
994 - version: "2.4.1"
995 - sqflite_android:
996 - dependency: transitive
997 - description:
998 - name: sqflite_android
999 - sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3"
1000 - url: "https://pub.dev"
1001 - source: hosted
1002 - version: "2.4.0"
1003 - sqflite_common:
1004 - dependency: transitive
1005 - description:
1006 - name: sqflite_common
1007 - sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709"
1008 - url: "https://pub.dev"
1009 - source: hosted
1010 - version: "2.5.4+6"
1011 - sqflite_common_ffi:
1012 - dependency: transitive
1013 - description:
1014 - name: sqflite_common_ffi
1015 - sha256: "883dd810b2b49e6e8c3b980df1829ef550a94e3f87deab5d864917d27ca6bf36"
1016 - url: "https://pub.dev"
1017 - source: hosted
1018 - version: "2.3.4+4"
1019 - sqflite_darwin:
1020 - dependency: transitive
1021 - description:
1022 - name: sqflite_darwin
1023 - sha256: "22adfd9a2c7d634041e96d6241e6e1c8138ca6817018afc5d443fef91dcefa9c"
1024 - url: "https://pub.dev"
1025 - source: hosted
1026 - version: "2.4.1+1"
1027 - sqflite_platform_interface:
1028 - dependency: transitive
1029 - description:
1030 - name: sqflite_platform_interface
1031 - sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920"
1032 - url: "https://pub.dev"
1033 - source: hosted
1034 - version: "2.4.0"
1035 - sqlite3:
1036 - dependency: transitive
1037 - description:
1038 - name: sqlite3
1039 - sha256: f393d92c71bdcc118d6203d07c991b9be0f84b1a6f89dd4f7eed348131329924
1040 - url: "https://pub.dev"
1041 - source: hosted
1042 - version: "2.9.0"
1043 - sqlite3_flutter_libs:
1044 - dependency: transitive
1045 - description:
1046 - name: sqlite3_flutter_libs
1047 - sha256: "69c80d812ef2500202ebd22002cbfc1b6565e9ff56b2f971e757fac5d42294df"
1048 - url: "https://pub.dev"
1049 - source: hosted
1050 - version: "0.5.40"
1051 - stack_trace:
1052 - dependency: transitive
1053 - description:
1054 - name: stack_trace
1055 - sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
1056 - url: "https://pub.dev"
1057 - source: hosted
1058 - version: "1.12.1"
1059 - stream_channel:
1060 - dependency: transitive
1061 - description:
1062 - name: stream_channel
1063 - sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
1064 - url: "https://pub.dev"
1065 - source: hosted
1066 - version: "2.1.4"
1067 - stream_transform:
1068 - dependency: transitive
1069 - description:
1070 - name: stream_transform
1071 - sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
1072 - url: "https://pub.dev"
1073 - source: hosted
1074 - version: "2.1.1"
1075 - string_scanner:
1076 - dependency: transitive
1077 - description:
1078 - name: string_scanner
1079 - sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
1080 - url: "https://pub.dev"
1081 - source: hosted
1082 - version: "1.4.1"
1083 - synchronized:
1084 - dependency: transitive
1085 - description:
1086 - name: synchronized
1087 - sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225"
1088 - url: "https://pub.dev"
1089 - source: hosted
1090 - version: "3.3.0+3"
1091 - term_glyph:
1092 - dependency: transitive
1093 - description:
1094 - name: term_glyph
1095 - sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
1096 - url: "https://pub.dev"
1097 - source: hosted
1098 - version: "1.2.2"
1099 - test_api:
1100 - dependency: transitive
1101 - description:
1102 - name: test_api
1103 - sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a"
1104 - url: "https://pub.dev"
1105 - source: hosted
1106 - version: "0.7.10"
1107 - torch_dart:
1108 - dependency: transitive
1109 - description:
1110 - path: "../scripts/torch_dart"
1111 - relative: true
1112 - source: path
1113 - version: "0.0.1"
1114 - trezor_connect:
1115 - dependency: "direct main"
1116 - description:
1117 - path: "."
1118 - ref: d1242cea90f84b00200e7bcab914a5af750e23fb
1119 - resolved-ref: d1242cea90f84b00200e7bcab914a5af750e23fb
1120 - url: "https://github.com/cake-tech/trezor_connect"
1121 - source: git
1122 - version: "0.0.1"
1123 - tuple:
1124 - dependency: transitive
1125 - description:
1126 - name: tuple
1127 - sha256: a97ce2013f240b2f3807bcbaf218765b6f301c3eff91092bcfa23a039e7dd151
1128 - url: "https://pub.dev"
1129 - source: hosted
1130 - version: "2.0.2"
1131 - typed_data:
1132 - dependency: transitive
1133 - description:
1134 - name: typed_data
1135 - sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
1136 - url: "https://pub.dev"
1137 - source: hosted
1138 - version: "1.4.0"
1139 - universal_ble:
1140 - dependency: transitive
1141 - description:
1142 - name: universal_ble
1143 - sha256: "35d210e93a5938c6a6d1fd3c710cf4ac90b1bdd1b11c8eb2beeb32600672e6e6"
1144 - url: "https://pub.dev"
1145 - source: hosted
1146 - version: "0.17.0"
1147 - universal_platform:
1148 - dependency: transitive
1149 - description:
1150 - name: universal_platform
1151 - sha256: "64e16458a0ea9b99260ceb5467a214c1f298d647c659af1bff6d3bf82536b1ec"
1152 - url: "https://pub.dev"
1153 - source: hosted
1154 - version: "1.1.0"
1155 - unorm_dart:
1156 - dependency: transitive
1157 - description:
1158 - name: unorm_dart
1159 - sha256: "8e3870a1caa60bde8352f9597dd3535d8068613269444f8e35ea8925ec84c1f5"
1160 - url: "https://pub.dev"
1161 - source: hosted
1162 - version: "0.3.1+1"
1163 - ur:
1164 - dependency: "direct main"
1165 - description:
1166 - path: "."
1167 - ref: "5738f70d0ec3d50977ac3dd01fed62939600238b"
1168 - resolved-ref: "5738f70d0ec3d50977ac3dd01fed62939600238b"
1169 - url: "https://github.com/bukata-sa/bc-ur-dart"
1170 - source: git
1171 - version: "0.1.0"
1172 - url_launcher:
1173 - dependency: transitive
1174 - description:
1175 - name: url_launcher
1176 - sha256: f6a7e5c4835bb4e3026a04793a4199ca2d14c739ec378fdfe23fc8075d0439f8
1177 - url: "https://pub.dev"
1178 - source: hosted
1179 - version: "6.3.2"
1180 - url_launcher_android:
1181 - dependency: transitive
1182 - description:
1183 - name: url_launcher_android
1184 - sha256: "81777b08c498a292d93ff2feead633174c386291e35612f8da438d6e92c4447e"
1185 - url: "https://pub.dev"
1186 - source: hosted
1187 - version: "6.3.20"
1188 - url_launcher_ios:
1189 - dependency: transitive
1190 - description:
1191 - name: url_launcher_ios
1192 - sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
1193 - url: "https://pub.dev"
1194 - source: hosted
1195 - version: "6.3.4"
1196 - url_launcher_linux:
1197 - dependency: transitive
1198 - description:
1199 - name: url_launcher_linux
1200 - sha256: "4e9ba368772369e3e08f231d2301b4ef72b9ff87c31192ef471b380ef29a4935"
1201 - url: "https://pub.dev"
1202 - source: hosted
1203 - version: "3.2.1"
1204 - url_launcher_macos:
1205 - dependency: transitive
1206 - description:
1207 - name: url_launcher_macos
1208 - sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
1209 - url: "https://pub.dev"
1210 - source: hosted
1211 - version: "3.2.3"
1212 - url_launcher_platform_interface:
1213 - dependency: transitive
1214 - description:
1215 - name: url_launcher_platform_interface
1216 - sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029"
1217 - url: "https://pub.dev"
1218 - source: hosted
1219 - version: "2.3.2"
1220 - url_launcher_web:
1221 - dependency: transitive
1222 - description:
1223 - name: url_launcher_web
1224 - sha256: "4bd2b7b4dc4d4d0b94e5babfffbca8eac1a126c7f3d6ecbc1a11013faa3abba2"
1225 - url: "https://pub.dev"
1226 - source: hosted
1227 - version: "2.4.1"
1228 - url_launcher_windows:
1229 - dependency: transitive
1230 - description:
1231 - name: url_launcher_windows
1232 - sha256: "3284b6d2ac454cf34f114e1d3319866fdd1e19cdc329999057e44ffe936cfa77"
1233 - url: "https://pub.dev"
1234 - source: hosted
1235 - version: "3.1.4"
1236 - uuid:
1237 - dependency: transitive
1238 - description:
1239 - name: uuid
1240 - sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff
1241 - url: "https://pub.dev"
1242 - source: hosted
1243 - version: "4.5.1"
1244 - vector_math:
1245 - dependency: transitive
1246 - description:
1247 - name: vector_math
1248 - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
1249 - url: "https://pub.dev"
1250 - source: hosted
1251 - version: "2.2.0"
1252 - vm_service:
1253 - dependency: transitive
1254 - description:
1255 - name: vm_service
1256 - sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
1257 - url: "https://pub.dev"
1258 - source: hosted
1259 - version: "15.0.0"
1260 - watcher:
1261 - dependency: "direct overridden"
1262 - description:
1263 - name: watcher
1264 - sha256: "0b7fd4a0bbc4b92641dbf20adfd7e3fd1398fe17102d94b674234563e110088a"
1265 - url: "https://pub.dev"
1266 - source: hosted
1267 - version: "1.1.2"
1268 - web:
1269 - dependency: transitive
1270 - description:
1271 - name: web
1272 - sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
1273 - url: "https://pub.dev"
1274 - source: hosted
1275 - version: "1.1.1"
1276 - web_socket:
1277 - dependency: transitive
1278 - description:
1279 - name: web_socket
1280 - sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
1281 - url: "https://pub.dev"
1282 - source: hosted
1283 - version: "1.0.1"
1284 - web_socket_channel:
1285 - dependency: transitive
1286 - description:
1287 - name: web_socket_channel
1288 - sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
1289 - url: "https://pub.dev"
1290 - source: hosted
1291 - version: "3.0.3"
1292 - xdg_directories:
1293 - dependency: transitive
1294 - description:
1295 - name: xdg_directories
1296 - sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
1297 - url: "https://pub.dev"
1298 - source: hosted
1299 - version: "1.1.0"
1300 - xml:
1301 - dependency: transitive
1302 - description:
1303 - name: xml
1304 - sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
1305 - url: "https://pub.dev"
1306 - source: hosted
1307 - version: "6.5.0"
1308 - yaml:
1309 - dependency: transitive
1310 - description:
1311 - name: yaml
1312 - sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
1313 - url: "https://pub.dev"
1314 - source: hosted
1315 - version: "3.1.3"
1316 - yaml_edit:
1317 - dependency: transitive
1318 - description:
1319 - name: yaml_edit
1320 - sha256: fb38626579fb345ad00e674e2af3a5c9b0cc4b9bfb8fd7f7ff322c7c9e62aef5
1321 - url: "https://pub.dev"
1322 - source: hosted
1323 - version: "2.2.2"
1324 -sdks:
1325 - dart: ">=3.9.0 <4.0.0"
1326 - flutter: ">=3.29.0"
cw_bitcoin/pubspec.yaml
+1 -1
@@ -29,7 +29,7 @@ dependencies:
29 blockchain_utils:
30 git:
31 url: https://github.com/cake-tech/blockchain_utils
32 - ref: cake-update-v2
32 + ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
33 cw_mweb:
34 path: ../cw_mweb
35 grpc: 4.0.1
cw_bitcoin/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_bitcoin_cash/.gitignore
-2
@@ -22,8 +22,6 @@ migrate_working_dir/
22 #.vscode/
23
24 # Flutter/Dart/Pub related
25 -# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26 -/pubspec.lock
25 **/doc/api/
26 .dart_tool/
27 .packages
cw_bitcoin_cash/pubspec.yaml
+1 -1
@@ -28,7 +28,7 @@ dependencies:
28 blockchain_utils:
29 git:
30 url: https://github.com/cake-tech/blockchain_utils
31 - ref: cake-update-v2
31 + ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
32
33 dev_dependencies:
34 flutter_test:
cw_bitcoin_cash/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_core/build.yaml new
+5
@@ -0,0 +1,5 @@
1 +targets:
2 + $default:
3 + sources:
4 + exclude:
5 + - "**/.secrets.g.dart"
cw_core/pubspec.lock deleted
-842
@@ -1,842 +0,0 @@
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: "5b7468c326d2f8a4f630056404ca0d291ade42918f4a3c6233618e724f39da8e"
9 - url: "https://pub.dev"
10 - source: hosted
11 - version: "92.0.0"
12 - analyzer:
13 - dependency: transitive
14 - description:
15 - name: analyzer
16 - sha256: "70e4b1ef8003c64793a9e268a551a82869a8a96f39deb73dea28084b0e8bf75e"
17 - url: "https://pub.dev"
18 - source: hosted
19 - version: "9.0.0"
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 - asn1lib:
29 - dependency: transitive
30 - description:
31 - name: asn1lib
32 - sha256: "1c296cd268f486cabcc3930e9b93a8133169305f18d722916e675959a88f6d2c"
33 - url: "https://pub.dev"
34 - source: hosted
35 - version: "1.5.9"
36 - async:
37 - dependency: transitive
38 - description:
39 - name: async
40 - sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
41 - url: "https://pub.dev"
42 - source: hosted
43 - version: "2.13.0"
44 - bech32:
45 - dependency: "direct main"
46 - description:
47 - path: "."
48 - ref: HEAD
49 - resolved-ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
50 - url: "https://github.com/cake-tech/bech32.git"
51 - source: git
52 - version: "0.2.2"
53 - blockchain_utils:
54 - dependency: "direct main"
55 - description:
56 - path: "."
57 - ref: cake-update-v2
58 - resolved-ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
59 - url: "https://github.com/cake-tech/blockchain_utils"
60 - source: git
61 - version: "3.3.0"
62 - boolean_selector:
63 - dependency: transitive
64 - description:
65 - name: boolean_selector
66 - sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
67 - url: "https://pub.dev"
68 - source: hosted
69 - version: "2.1.2"
70 - build:
71 - dependency: transitive
72 - description:
73 - name: build
74 - sha256: a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10
75 - url: "https://pub.dev"
76 - source: hosted
77 - version: "4.0.6"
78 - build_config:
79 - dependency: transitive
80 - description:
81 - name: build_config
82 - sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71"
83 - url: "https://pub.dev"
84 - source: hosted
85 - version: "1.3.0"
86 - build_daemon:
87 - dependency: transitive
88 - description:
89 - name: build_daemon
90 - sha256: "8e928697a82be082206edb0b9c99c5a4ad6bc31c9e9b8b2f291ae65cd4a25daa"
91 - url: "https://pub.dev"
92 - source: hosted
93 - version: "4.0.4"
94 - build_runner:
95 - dependency: "direct dev"
96 - description:
97 - name: build_runner
98 - sha256: "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6"
99 - url: "https://pub.dev"
100 - source: hosted
101 - version: "2.15.0"
102 - built_collection:
103 - dependency: transitive
104 - description:
105 - name: built_collection
106 - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
107 - url: "https://pub.dev"
108 - source: hosted
109 - version: "5.1.1"
110 - built_value:
111 - dependency: transitive
112 - description:
113 - name: built_value
114 - sha256: "082001b5c3dc495d4a42f1d5789990505df20d8547d42507c29050af6933ee27"
115 - url: "https://pub.dev"
116 - source: hosted
117 - version: "8.10.1"
118 - cake_backup:
119 - dependency: "direct main"
120 - description:
121 - path: "."
122 - ref: main
123 - resolved-ref: "3aba867dcab6737f6707782f5db15d71f303db38"
124 - url: "https://github.com/cake-tech/cake_backup.git"
125 - source: git
126 - version: "1.0.0+1"
127 - characters:
128 - dependency: transitive
129 - description:
130 - name: characters
131 - sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
132 - url: "https://pub.dev"
133 - source: hosted
134 - version: "1.4.1"
135 - checked_yaml:
136 - dependency: transitive
137 - description:
138 - name: checked_yaml
139 - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
140 - url: "https://pub.dev"
141 - source: hosted
142 - version: "2.0.3"
143 - clock:
144 - dependency: transitive
145 - description:
146 - name: clock
147 - sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
148 - url: "https://pub.dev"
149 - source: hosted
150 - version: "1.1.2"
151 - collection:
152 - dependency: transitive
153 - description:
154 - name: collection
155 - sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
156 - url: "https://pub.dev"
157 - source: hosted
158 - version: "1.19.1"
159 - convert:
160 - dependency: transitive
161 - description:
162 - name: convert
163 - sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
164 - url: "https://pub.dev"
165 - source: hosted
166 - version: "3.1.2"
167 - crypto:
168 - dependency: transitive
169 - description:
170 - name: crypto
171 - sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
172 - url: "https://pub.dev"
173 - source: hosted
174 - version: "3.0.6"
175 - cryptography:
176 - dependency: transitive
177 - description:
178 - name: cryptography
179 - sha256: d146b76d33d94548cf035233fbc2f4338c1242fa119013bead807d033fc4ae05
180 - url: "https://pub.dev"
181 - source: hosted
182 - version: "2.7.0"
183 - cupertino_icons:
184 - dependency: transitive
185 - description:
186 - name: cupertino_icons
187 - sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
188 - url: "https://pub.dev"
189 - source: hosted
190 - version: "1.0.8"
191 - dart_style:
192 - dependency: transitive
193 - description:
194 - name: dart_style
195 - sha256: a9c30492da18ff84efe2422ba2d319a89942d93e58eb0b73d32abe822ef54b7b
196 - url: "https://pub.dev"
197 - source: hosted
198 - version: "3.1.3"
199 - decimal:
200 - dependency: "direct main"
201 - description:
202 - name: decimal
203 - sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21"
204 - url: "https://pub.dev"
205 - source: hosted
206 - version: "2.3.3"
207 - encrypt:
208 - dependency: "direct main"
209 - description:
210 - name: encrypt
211 - sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2"
212 - url: "https://pub.dev"
213 - source: hosted
214 - version: "5.0.3"
215 - fake_async:
216 - dependency: transitive
217 - description:
218 - name: fake_async
219 - sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
220 - url: "https://pub.dev"
221 - source: hosted
222 - version: "1.3.3"
223 - ffi:
224 - dependency: transitive
225 - description:
226 - name: ffi
227 - sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
228 - url: "https://pub.dev"
229 - source: hosted
230 - version: "2.1.3"
231 - file:
232 - dependency: "direct main"
233 - description:
234 - name: file
235 - sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
236 - url: "https://pub.dev"
237 - source: hosted
238 - version: "7.0.1"
239 - fixnum:
240 - dependency: transitive
241 - description:
242 - name: fixnum
243 - sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
244 - url: "https://pub.dev"
245 - source: hosted
246 - version: "1.1.1"
247 - flutter:
248 - dependency: "direct main"
249 - description: flutter
250 - source: sdk
251 - version: "0.0.0"
252 - flutter_mobx:
253 - dependency: "direct main"
254 - description:
255 - name: flutter_mobx
256 - sha256: ba5e93467866a2991259dc51cffd41ef45f695c667c2b8e7b087bf24118b50fe
257 - url: "https://pub.dev"
258 - source: hosted
259 - version: "2.3.0"
260 - flutter_test:
261 - dependency: "direct dev"
262 - description: flutter
263 - source: sdk
264 - version: "0.0.0"
265 - glob:
266 - dependency: transitive
267 - description:
268 - name: glob
269 - sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
270 - url: "https://pub.dev"
271 - source: hosted
272 - version: "2.1.3"
273 - graphs:
274 - dependency: transitive
275 - description:
276 - name: graphs
277 - sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
278 - url: "https://pub.dev"
279 - source: hosted
280 - version: "2.3.2"
281 - hive:
282 - dependency: "direct dev"
283 - description:
284 - name: hive
285 - sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941"
286 - url: "https://pub.dev"
287 - source: hosted
288 - version: "2.2.3"
289 - http:
290 - dependency: "direct main"
291 - description:
292 - name: http
293 - sha256: "2c11f3f94c687ee9bad77c171151672986360b2b001d109814ee7140b2cf261b"
294 - url: "https://pub.dev"
295 - source: hosted
296 - version: "1.4.0"
297 - http_multi_server:
298 - dependency: transitive
299 - description:
300 - name: http_multi_server
301 - sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
302 - url: "https://pub.dev"
303 - source: hosted
304 - version: "3.2.2"
305 - http_parser:
306 - dependency: transitive
307 - description:
308 - name: http_parser
309 - sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
310 - url: "https://pub.dev"
311 - source: hosted
312 - version: "4.1.2"
313 - intl:
314 - dependency: "direct main"
315 - description:
316 - name: intl
317 - sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
318 - url: "https://pub.dev"
319 - source: hosted
320 - version: "0.19.0"
321 - io:
322 - dependency: transitive
323 - description:
324 - name: io
325 - sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
326 - url: "https://pub.dev"
327 - source: hosted
328 - version: "1.0.5"
329 - js:
330 - dependency: transitive
331 - description:
332 - name: js
333 - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
334 - url: "https://pub.dev"
335 - source: hosted
336 - version: "0.6.7"
337 - json_annotation:
338 - dependency: transitive
339 - description:
340 - name: json_annotation
341 - sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
342 - url: "https://pub.dev"
343 - source: hosted
344 - version: "4.9.0"
345 - leak_tracker:
346 - dependency: transitive
347 - description:
348 - name: leak_tracker
349 - sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
350 - url: "https://pub.dev"
351 - source: hosted
352 - version: "11.0.2"
353 - leak_tracker_flutter_testing:
354 - dependency: transitive
355 - description:
356 - name: leak_tracker_flutter_testing
357 - sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
358 - url: "https://pub.dev"
359 - source: hosted
360 - version: "3.0.10"
361 - leak_tracker_testing:
362 - dependency: transitive
363 - description:
364 - name: leak_tracker_testing
365 - sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
366 - url: "https://pub.dev"
367 - source: hosted
368 - version: "3.0.2"
369 - logging:
370 - dependency: transitive
371 - description:
372 - name: logging
373 - sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
374 - url: "https://pub.dev"
375 - source: hosted
376 - version: "1.3.0"
377 - matcher:
378 - dependency: transitive
379 - description:
380 - name: matcher
381 - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861
382 - url: "https://pub.dev"
383 - source: hosted
384 - version: "0.12.19"
385 - material_color_utilities:
386 - dependency: transitive
387 - description:
388 - name: material_color_utilities
389 - sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
390 - url: "https://pub.dev"
391 - source: hosted
392 - version: "0.13.0"
393 - meta:
394 - dependency: transitive
395 - description:
396 - name: meta
397 - sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
398 - url: "https://pub.dev"
399 - source: hosted
400 - version: "1.17.0"
401 - mime:
402 - dependency: transitive
403 - description:
404 - name: mime
405 - sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
406 - url: "https://pub.dev"
407 - source: hosted
408 - version: "2.0.0"
409 - mobx:
410 - dependency: "direct main"
411 - description:
412 - name: mobx
413 - sha256: "25ea9a3ee69243d578fb6288721d8eeb18550d0391c32f896d377d994154bff2"
414 - url: "https://pub.dev"
415 - source: hosted
416 - version: "2.6.0"
417 - mobx_codegen:
418 - dependency: "direct dev"
419 - description:
420 - name: mobx_codegen
421 - sha256: "6529bcae074838004b58ad01fbe4966be182a176aacfb723686985986ebac19f"
422 - url: "https://pub.dev"
423 - source: hosted
424 - version: "2.7.7"
425 - nested:
426 - dependency: transitive
427 - description:
428 - name: nested
429 - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
430 - url: "https://pub.dev"
431 - source: hosted
432 - version: "1.0.0"
433 - on_chain:
434 - dependency: "direct main"
435 - description:
436 - path: "."
437 - ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
438 - resolved-ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
439 - url: "https://github.com/cake-tech/on_chain.git"
440 - source: git
441 - version: "3.7.0"
442 - package_config:
443 - dependency: transitive
444 - description:
445 - name: package_config
446 - sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc
447 - url: "https://pub.dev"
448 - source: hosted
449 - version: "2.2.0"
450 - path:
451 - dependency: transitive
452 - description:
453 - name: path
454 - sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
455 - url: "https://pub.dev"
456 - source: hosted
457 - version: "1.9.1"
458 - path_provider:
459 - dependency: "direct main"
460 - description:
461 - name: path_provider
462 - sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
463 - url: "https://pub.dev"
464 - source: hosted
465 - version: "2.1.5"
466 - path_provider_android:
467 - dependency: transitive
468 - description:
469 - name: path_provider_android
470 - sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
471 - url: "https://pub.dev"
472 - source: hosted
473 - version: "2.2.17"
474 - path_provider_foundation:
475 - dependency: transitive
476 - description:
477 - name: path_provider_foundation
478 - sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
479 - url: "https://pub.dev"
480 - source: hosted
481 - version: "2.4.1"
482 - path_provider_linux:
483 - dependency: transitive
484 - description:
485 - name: path_provider_linux
486 - sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
487 - url: "https://pub.dev"
488 - source: hosted
489 - version: "2.2.1"
490 - path_provider_platform_interface:
491 - dependency: transitive
492 - description:
493 - name: path_provider_platform_interface
494 - sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
495 - url: "https://pub.dev"
496 - source: hosted
497 - version: "2.1.2"
498 - path_provider_windows:
499 - dependency: transitive
500 - description:
501 - name: path_provider_windows
502 - sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
503 - url: "https://pub.dev"
504 - source: hosted
505 - version: "2.3.0"
506 - platform:
507 - dependency: transitive
508 - description:
509 - name: platform
510 - sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
511 - url: "https://pub.dev"
512 - source: hosted
513 - version: "3.1.6"
514 - plugin_platform_interface:
515 - dependency: transitive
516 - description:
517 - name: plugin_platform_interface
518 - sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
519 - url: "https://pub.dev"
520 - source: hosted
521 - version: "2.1.8"
522 - pointycastle:
523 - dependency: transitive
524 - description:
525 - name: pointycastle
526 - sha256: "4be0097fcf3fd3e8449e53730c631200ebc7b88016acecab2b0da2f0149222fe"
527 - url: "https://pub.dev"
528 - source: hosted
529 - version: "3.9.1"
530 - pool:
531 - dependency: transitive
532 - description:
533 - name: pool
534 - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
535 - url: "https://pub.dev"
536 - source: hosted
537 - version: "1.5.1"
538 - provider:
539 - dependency: transitive
540 - description:
541 - name: provider
542 - sha256: "4abbd070a04e9ddc287673bf5a030c7ca8b685ff70218720abab8b092f53dd84"
543 - url: "https://pub.dev"
544 - source: hosted
545 - version: "6.1.5"
546 - pub_semver:
547 - dependency: transitive
548 - description:
549 - name: pub_semver
550 - sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585"
551 - url: "https://pub.dev"
552 - source: hosted
553 - version: "2.2.0"
554 - pubspec_parse:
555 - dependency: transitive
556 - description:
557 - name: pubspec_parse
558 - sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082"
559 - url: "https://pub.dev"
560 - source: hosted
561 - version: "1.5.0"
562 - rational:
563 - dependency: transitive
564 - description:
565 - name: rational
566 - sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336
567 - url: "https://pub.dev"
568 - source: hosted
569 - version: "2.2.3"
570 - shelf:
571 - dependency: transitive
572 - description:
573 - name: shelf
574 - sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12
575 - url: "https://pub.dev"
576 - source: hosted
577 - version: "1.4.2"
578 - shelf_web_socket:
579 - dependency: transitive
580 - description:
581 - name: shelf_web_socket
582 - sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925"
583 - url: "https://pub.dev"
584 - source: hosted
585 - version: "3.0.0"
586 - sky_engine:
587 - dependency: transitive
588 - description: flutter
589 - source: sdk
590 - version: "0.0.0"
591 - socks5_proxy:
592 - dependency: "direct main"
593 - description:
594 - path: "."
595 - ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
596 - resolved-ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
597 - url: "https://github.com/LacticWhale/socks_dart"
598 - source: git
599 - version: "2.1.0"
600 - socks_socket:
601 - dependency: "direct main"
602 - description:
603 - path: "."
604 - ref: e6232c53c1595469931ababa878759a067c02e94
605 - resolved-ref: e6232c53c1595469931ababa878759a067c02e94
606 - url: "https://github.com/sneurlax/socks_socket"
607 - source: git
608 - version: "1.1.1"
609 - source_gen:
610 - dependency: transitive
611 - description:
612 - name: source_gen
613 - sha256: ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02
614 - url: "https://pub.dev"
615 - source: hosted
616 - version: "4.2.3"
617 - source_span:
618 - dependency: transitive
619 - description:
620 - name: source_span
621 - sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
622 - url: "https://pub.dev"
623 - source: hosted
624 - version: "1.10.1"
625 - sqflite:
626 - dependency: "direct main"
627 - description:
628 - name: sqflite
629 - sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb"
630 - url: "https://pub.dev"
631 - source: hosted
632 - version: "2.4.1"
633 - sqflite_android:
634 - dependency: transitive
635 - description:
636 - name: sqflite_android
637 - sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3"
638 - url: "https://pub.dev"
639 - source: hosted
640 - version: "2.4.0"
641 - sqflite_common:
642 - dependency: transitive
643 - description:
644 - name: sqflite_common
645 - sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709"
646 - url: "https://pub.dev"
647 - source: hosted
648 - version: "2.5.4+6"
649 - sqflite_common_ffi:
650 - dependency: "direct main"
651 - description:
652 - name: sqflite_common_ffi
653 - sha256: "883dd810b2b49e6e8c3b980df1829ef550a94e3f87deab5d864917d27ca6bf36"
654 - url: "https://pub.dev"
655 - source: hosted
656 - version: "2.3.4+4"
657 - sqflite_darwin:
658 - dependency: transitive
659 - description:
660 - name: sqflite_darwin
661 - sha256: "22adfd9a2c7d634041e96d6241e6e1c8138ca6817018afc5d443fef91dcefa9c"
662 - url: "https://pub.dev"
663 - source: hosted
664 - version: "2.4.1+1"
665 - sqflite_platform_interface:
666 - dependency: transitive
667 - description:
668 - name: sqflite_platform_interface
669 - sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920"
670 - url: "https://pub.dev"
671 - source: hosted
672 - version: "2.4.0"
673 - sqlite3:
674 - dependency: transitive
675 - description:
676 - name: sqlite3
677 - sha256: f393d92c71bdcc118d6203d07c991b9be0f84b1a6f89dd4f7eed348131329924
678 - url: "https://pub.dev"
679 - source: hosted
680 - version: "2.9.0"
681 - sqlite3_flutter_libs:
682 - dependency: "direct main"
683 - description:
684 - name: sqlite3_flutter_libs
685 - sha256: "69c80d812ef2500202ebd22002cbfc1b6565e9ff56b2f971e757fac5d42294df"
686 - url: "https://pub.dev"
687 - source: hosted
688 - version: "0.5.40"
689 - stack_trace:
690 - dependency: transitive
691 - description:
692 - name: stack_trace
693 - sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
694 - url: "https://pub.dev"
695 - source: hosted
696 - version: "1.12.1"
697 - stream_channel:
698 - dependency: transitive
699 - description:
700 - name: stream_channel
701 - sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
702 - url: "https://pub.dev"
703 - source: hosted
704 - version: "2.1.4"
705 - stream_transform:
706 - dependency: transitive
707 - description:
708 - name: stream_transform
709 - sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
710 - url: "https://pub.dev"
711 - source: hosted
712 - version: "2.1.1"
713 - string_scanner:
714 - dependency: transitive
715 - description:
716 - name: string_scanner
717 - sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
718 - url: "https://pub.dev"
719 - source: hosted
720 - version: "1.4.1"
721 - synchronized:
722 - dependency: transitive
723 - description:
724 - name: synchronized
725 - sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225"
726 - url: "https://pub.dev"
727 - source: hosted
728 - version: "3.3.0+3"
729 - term_glyph:
730 - dependency: transitive
731 - description:
732 - name: term_glyph
733 - sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
734 - url: "https://pub.dev"
735 - source: hosted
736 - version: "1.2.2"
737 - test_api:
738 - dependency: transitive
739 - description:
740 - name: test_api
741 - sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a"
742 - url: "https://pub.dev"
743 - source: hosted
744 - version: "0.7.10"
745 - torch_dart:
746 - dependency: "direct main"
747 - description:
748 - path: "../scripts/torch_dart"
749 - relative: true
750 - source: path
751 - version: "0.0.1"
752 - tuple:
753 - dependency: transitive
754 - description:
755 - name: tuple
756 - sha256: a97ce2013f240b2f3807bcbaf218765b6f301c3eff91092bcfa23a039e7dd151
757 - url: "https://pub.dev"
758 - source: hosted
759 - version: "2.0.2"
760 - typed_data:
761 - dependency: transitive
762 - description:
763 - name: typed_data
764 - sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
765 - url: "https://pub.dev"
766 - source: hosted
767 - version: "1.4.0"
768 - unorm_dart:
769 - dependency: "direct main"
770 - description:
771 - name: unorm_dart
772 - sha256: "23d8bf65605401a6a32cff99435fed66ef3dab3ddcad3454059165df46496a3b"
773 - url: "https://pub.dev"
774 - source: hosted
775 - version: "0.3.0"
776 - vector_math:
777 - dependency: transitive
778 - description:
779 - name: vector_math
780 - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
781 - url: "https://pub.dev"
782 - source: hosted
783 - version: "2.2.0"
784 - vm_service:
785 - dependency: transitive
786 - description:
787 - name: vm_service
788 - sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
789 - url: "https://pub.dev"
790 - source: hosted
791 - version: "15.0.0"
792 - watcher:
793 - dependency: "direct overridden"
794 - description:
795 - name: watcher
796 - sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104"
797 - url: "https://pub.dev"
798 - source: hosted
799 - version: "1.1.1"
800 - web:
801 - dependency: transitive
802 - description:
803 - name: web
804 - sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
805 - url: "https://pub.dev"
806 - source: hosted
807 - version: "1.1.1"
808 - web_socket:
809 - dependency: transitive
810 - description:
811 - name: web_socket
812 - sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
813 - url: "https://pub.dev"
814 - source: hosted
815 - version: "1.0.1"
816 - web_socket_channel:
817 - dependency: transitive
818 - description:
819 - name: web_socket_channel
820 - sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
821 - url: "https://pub.dev"
822 - source: hosted
823 - version: "3.0.3"
824 - xdg_directories:
825 - dependency: transitive
826 - description:
827 - name: xdg_directories
828 - sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
829 - url: "https://pub.dev"
830 - source: hosted
831 - version: "1.1.0"
832 - yaml:
833 - dependency: transitive
834 - description:
835 - name: yaml
836 - sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
837 - url: "https://pub.dev"
838 - source: hosted
839 - version: "3.1.3"
840 -sdks:
841 - dart: ">=3.9.0 <4.0.0"
842 - flutter: ">=3.27.0"
cw_core/pubspec.yaml
+1 -1
@@ -42,7 +42,7 @@ dependencies:
42 blockchain_utils:
43 git:
44 url: https://github.com/cake-tech/blockchain_utils
45 - ref: cake-update-v2
45 + ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
46 sqflite: ^2.4.1
47 sqflite_common_ffi: ^2.3.4+4
48 bech32:
cw_core/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_decred/.gitignore
-2
@@ -22,8 +22,6 @@ migrate_working_dir/
22 #.vscode/
23
24 # Flutter/Dart/Pub related
25 -# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26 -/pubspec.lock
25 **/doc/api/
26 .dart_tool/
27 .packages
cw_decred/pubspec.lock deleted
-881
@@ -1,881 +0,0 @@
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: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6
25 - url: "https://pub.dev"
26 - source: hosted
27 - version: "2.6.0"
28 - asn1lib:
29 - dependency: transitive
30 - description:
31 - name: asn1lib
32 - sha256: "4bae5ae63e6d6dd17c4aac8086f3dec26c0236f6a0f03416c6c19d830c367cf5"
33 - url: "https://pub.dev"
34 - source: hosted
35 - version: "1.5.8"
36 - async:
37 - dependency: transitive
38 - description:
39 - name: async
40 - sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
41 - url: "https://pub.dev"
42 - source: hosted
43 - version: "2.13.0"
44 - bech32:
45 - dependency: transitive
46 - description:
47 - path: "."
48 - ref: HEAD
49 - resolved-ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
50 - url: "https://github.com/cake-tech/bech32.git"
51 - source: git
52 - version: "0.2.2"
53 - blockchain_utils:
54 - dependency: transitive
55 - description:
56 - path: "."
57 - ref: cake-update-v2
58 - resolved-ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
59 - url: "https://github.com/cake-tech/blockchain_utils"
60 - source: git
61 - version: "3.3.0"
62 - boolean_selector:
63 - dependency: transitive
64 - description:
65 - name: boolean_selector
66 - sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
67 - url: "https://pub.dev"
68 - source: hosted
69 - version: "2.1.2"
70 - build:
71 - dependency: transitive
72 - description:
73 - name: build
74 - sha256: a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10
75 - url: "https://pub.dev"
76 - source: hosted
77 - version: "4.0.6"
78 - build_config:
79 - dependency: transitive
80 - description:
81 - name: build_config
82 - sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71"
83 - url: "https://pub.dev"
84 - source: hosted
85 - version: "1.3.0"
86 - build_daemon:
87 - dependency: transitive
88 - description:
89 - name: build_daemon
90 - sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9"
91 - url: "https://pub.dev"
92 - source: hosted
93 - version: "4.0.2"
94 - build_runner:
95 - dependency: "direct dev"
96 - description:
97 - name: build_runner
98 - sha256: "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6"
99 - url: "https://pub.dev"
100 - source: hosted
101 - version: "2.15.0"
102 - built_collection:
103 - dependency: transitive
104 - description:
105 - name: built_collection
106 - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
107 - url: "https://pub.dev"
108 - source: hosted
109 - version: "5.1.1"
110 - built_value:
111 - dependency: transitive
112 - description:
113 - name: built_value
114 - sha256: "34e4067d30ce212937df995f03b69992eea683539ceeac7f679a1f1eba055b56"
115 - url: "https://pub.dev"
116 - source: hosted
117 - version: "8.12.6"
118 - cake_backup:
119 - dependency: transitive
120 - description:
121 - path: "."
122 - ref: main
123 - resolved-ref: "3aba867dcab6737f6707782f5db15d71f303db38"
124 - url: "https://github.com/cake-tech/cake_backup.git"
125 - source: git
126 - version: "1.0.0+1"
127 - characters:
128 - dependency: transitive
129 - description:
130 - name: characters
131 - sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
132 - url: "https://pub.dev"
133 - source: hosted
134 - version: "1.4.1"
135 - checked_yaml:
136 - dependency: transitive
137 - description:
138 - name: checked_yaml
139 - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
140 - url: "https://pub.dev"
141 - source: hosted
142 - version: "2.0.3"
143 - cli_util:
144 - dependency: transitive
145 - description:
146 - name: cli_util
147 - sha256: ff6785f7e9e3c38ac98b2fb035701789de90154024a75b6cb926445e83197d1c
148 - url: "https://pub.dev"
149 - source: hosted
150 - version: "0.4.2"
151 - clock:
152 - dependency: transitive
153 - description:
154 - name: clock
155 - sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
156 - url: "https://pub.dev"
157 - source: hosted
158 - version: "1.1.2"
159 - collection:
160 - dependency: transitive
161 - description:
162 - name: collection
163 - sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
164 - url: "https://pub.dev"
165 - source: hosted
166 - version: "1.19.1"
167 - convert:
168 - dependency: transitive
169 - description:
170 - name: convert
171 - sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
172 - url: "https://pub.dev"
173 - source: hosted
174 - version: "3.1.2"
175 - crypto:
176 - dependency: transitive
177 - description:
178 - name: crypto
179 - sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
180 - url: "https://pub.dev"
181 - source: hosted
182 - version: "3.0.6"
183 - cryptography:
184 - dependency: transitive
185 - description:
186 - name: cryptography
187 - sha256: d146b76d33d94548cf035233fbc2f4338c1242fa119013bead807d033fc4ae05
188 - url: "https://pub.dev"
189 - source: hosted
190 - version: "2.7.0"
191 - cupertino_icons:
192 - dependency: transitive
193 - description:
194 - name: cupertino_icons
195 - sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
196 - url: "https://pub.dev"
197 - source: hosted
198 - version: "1.0.8"
199 - cw_core:
200 - dependency: "direct main"
201 - description:
202 - path: "../cw_core"
203 - relative: true
204 - source: path
205 - version: "0.0.1"
206 - dart_style:
207 - dependency: transitive
208 - description:
209 - name: dart_style
210 - sha256: "29f7ecc274a86d32920b1d9cfc7502fa87220da41ec60b55f329559d5732e2b2"
211 - url: "https://pub.dev"
212 - source: hosted
213 - version: "3.1.7"
214 - decimal:
215 - dependency: transitive
216 - description:
217 - name: decimal
218 - sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21"
219 - url: "https://pub.dev"
220 - source: hosted
221 - version: "2.3.3"
222 - encrypt:
223 - dependency: transitive
224 - description:
225 - name: encrypt
226 - sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2"
227 - url: "https://pub.dev"
228 - source: hosted
229 - version: "5.0.3"
230 - fake_async:
231 - dependency: transitive
232 - description:
233 - name: fake_async
234 - sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
235 - url: "https://pub.dev"
236 - source: hosted
237 - version: "1.3.3"
238 - ffi:
239 - dependency: transitive
240 - description:
241 - name: ffi
242 - sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
243 - url: "https://pub.dev"
244 - source: hosted
245 - version: "2.1.3"
246 - ffigen:
247 - dependency: "direct dev"
248 - description:
249 - name: ffigen
250 - sha256: b7803707faeec4ce3c1b0c2274906504b796e3b70ad573577e72333bd1c9b3ba
251 - url: "https://pub.dev"
252 - source: hosted
253 - version: "20.1.1"
254 - file:
255 - dependency: transitive
256 - description:
257 - name: file
258 - sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
259 - url: "https://pub.dev"
260 - source: hosted
261 - version: "7.0.1"
262 - fixnum:
263 - dependency: transitive
264 - description:
265 - name: fixnum
266 - sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
267 - url: "https://pub.dev"
268 - source: hosted
269 - version: "1.1.1"
270 - flutter:
271 - dependency: "direct main"
272 - description: flutter
273 - source: sdk
274 - version: "0.0.0"
275 - flutter_mobx:
276 - dependency: transitive
277 - description:
278 - name: flutter_mobx
279 - sha256: ba5e93467866a2991259dc51cffd41ef45f695c667c2b8e7b087bf24118b50fe
280 - url: "https://pub.dev"
281 - source: hosted
282 - version: "2.3.0"
283 - flutter_test:
284 - dependency: "direct dev"
285 - description: flutter
286 - source: sdk
287 - version: "0.0.0"
288 - glob:
289 - dependency: transitive
290 - description:
291 - name: glob
292 - sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
293 - url: "https://pub.dev"
294 - source: hosted
295 - version: "2.1.3"
296 - graphs:
297 - dependency: transitive
298 - description:
299 - name: graphs
300 - sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
301 - url: "https://pub.dev"
302 - source: hosted
303 - version: "2.3.2"
304 - hive:
305 - dependency: "direct dev"
306 - description:
307 - name: hive
308 - sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941"
309 - url: "https://pub.dev"
310 - source: hosted
311 - version: "2.2.3"
312 - http:
313 - dependency: transitive
314 - description:
315 - name: http
316 - sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
317 - url: "https://pub.dev"
318 - source: hosted
319 - version: "1.3.0"
320 - http_multi_server:
321 - dependency: transitive
322 - description:
323 - name: http_multi_server
324 - sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
325 - url: "https://pub.dev"
326 - source: hosted
327 - version: "3.2.2"
328 - http_parser:
329 - dependency: transitive
330 - description:
331 - name: http_parser
332 - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
333 - url: "https://pub.dev"
334 - source: hosted
335 - version: "4.0.2"
336 - intl:
337 - dependency: transitive
338 - description:
339 - name: intl
340 - sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
341 - url: "https://pub.dev"
342 - source: hosted
343 - version: "0.19.0"
344 - io:
345 - dependency: transitive
346 - description:
347 - name: io
348 - sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
349 - url: "https://pub.dev"
350 - source: hosted
351 - version: "1.0.5"
352 - js:
353 - dependency: transitive
354 - description:
355 - name: js
356 - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
357 - url: "https://pub.dev"
358 - source: hosted
359 - version: "0.6.7"
360 - json_annotation:
361 - dependency: transitive
362 - description:
363 - name: json_annotation
364 - sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
365 - url: "https://pub.dev"
366 - source: hosted
367 - version: "4.9.0"
368 - leak_tracker:
369 - dependency: transitive
370 - description:
371 - name: leak_tracker
372 - sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
373 - url: "https://pub.dev"
374 - source: hosted
375 - version: "11.0.2"
376 - leak_tracker_flutter_testing:
377 - dependency: transitive
378 - description:
379 - name: leak_tracker_flutter_testing
380 - sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
381 - url: "https://pub.dev"
382 - source: hosted
383 - version: "3.0.10"
384 - leak_tracker_testing:
385 - dependency: transitive
386 - description:
387 - name: leak_tracker_testing
388 - sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
389 - url: "https://pub.dev"
390 - source: hosted
391 - version: "3.0.2"
392 - logging:
393 - dependency: transitive
394 - description:
395 - name: logging
396 - sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
397 - url: "https://pub.dev"
398 - source: hosted
399 - version: "1.3.0"
400 - matcher:
401 - dependency: transitive
402 - description:
403 - name: matcher
404 - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861
405 - url: "https://pub.dev"
406 - source: hosted
407 - version: "0.12.19"
408 - material_color_utilities:
409 - dependency: transitive
410 - description:
411 - name: material_color_utilities
412 - sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
413 - url: "https://pub.dev"
414 - source: hosted
415 - version: "0.13.0"
416 - meta:
417 - dependency: transitive
418 - description:
419 - name: meta
420 - sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
421 - url: "https://pub.dev"
422 - source: hosted
423 - version: "1.17.0"
424 - mime:
425 - dependency: transitive
426 - description:
427 - name: mime
428 - sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
429 - url: "https://pub.dev"
430 - source: hosted
431 - version: "2.0.0"
432 - mobx:
433 - dependency: transitive
434 - description:
435 - name: mobx
436 - sha256: "25ea9a3ee69243d578fb6288721d8eeb18550d0391c32f896d377d994154bff2"
437 - url: "https://pub.dev"
438 - source: hosted
439 - version: "2.6.0"
440 - mobx_codegen:
441 - dependency: "direct dev"
442 - description:
443 - name: mobx_codegen
444 - sha256: "6529bcae074838004b58ad01fbe4966be182a176aacfb723686985986ebac19f"
445 - url: "https://pub.dev"
446 - source: hosted
447 - version: "2.7.7"
448 - nested:
449 - dependency: transitive
450 - description:
451 - name: nested
452 - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
453 - url: "https://pub.dev"
454 - source: hosted
455 - version: "1.0.0"
456 - on_chain:
457 - dependency: transitive
458 - description:
459 - path: "."
460 - ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
461 - resolved-ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
462 - url: "https://github.com/cake-tech/on_chain.git"
463 - source: git
464 - version: "3.7.0"
465 - package_config:
466 - dependency: transitive
467 - description:
468 - name: package_config
469 - sha256: "92d4488434b520a62570293fbd33bb556c7d49230791c1b4bbd973baf6d2dc67"
470 - url: "https://pub.dev"
471 - source: hosted
472 - version: "2.1.1"
473 - path:
474 - dependency: transitive
475 - description:
476 - name: path
477 - sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
478 - url: "https://pub.dev"
479 - source: hosted
480 - version: "1.9.1"
481 - path_provider:
482 - dependency: transitive
483 - description:
484 - name: path_provider
485 - sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
486 - url: "https://pub.dev"
487 - source: hosted
488 - version: "2.1.5"
489 - path_provider_android:
490 - dependency: transitive
491 - description:
492 - name: path_provider_android
493 - sha256: "4adf4fd5423ec60a29506c76581bc05854c55e3a0b72d35bb28d661c9686edf2"
494 - url: "https://pub.dev"
495 - source: hosted
496 - version: "2.2.15"
497 - path_provider_foundation:
498 - dependency: transitive
499 - description:
500 - name: path_provider_foundation
501 - sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
502 - url: "https://pub.dev"
503 - source: hosted
504 - version: "2.4.1"
505 - path_provider_linux:
506 - dependency: transitive
507 - description:
508 - name: path_provider_linux
509 - sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
510 - url: "https://pub.dev"
511 - source: hosted
512 - version: "2.2.1"
513 - path_provider_platform_interface:
514 - dependency: transitive
515 - description:
516 - name: path_provider_platform_interface
517 - sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
518 - url: "https://pub.dev"
519 - source: hosted
520 - version: "2.1.2"
521 - path_provider_windows:
522 - dependency: transitive
523 - description:
524 - name: path_provider_windows
525 - sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
526 - url: "https://pub.dev"
527 - source: hosted
528 - version: "2.3.0"
529 - platform:
530 - dependency: transitive
531 - description:
532 - name: platform
533 - sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
534 - url: "https://pub.dev"
535 - source: hosted
536 - version: "3.1.6"
537 - plugin_platform_interface:
538 - dependency: transitive
539 - description:
540 - name: plugin_platform_interface
541 - sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
542 - url: "https://pub.dev"
543 - source: hosted
544 - version: "2.1.8"
545 - pointycastle:
546 - dependency: transitive
547 - description:
548 - name: pointycastle
549 - sha256: "4be0097fcf3fd3e8449e53730c631200ebc7b88016acecab2b0da2f0149222fe"
550 - url: "https://pub.dev"
551 - source: hosted
552 - version: "3.9.1"
553 - pool:
554 - dependency: transitive
555 - description:
556 - name: pool
557 - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
558 - url: "https://pub.dev"
559 - source: hosted
560 - version: "1.5.1"
561 - provider:
562 - dependency: transitive
563 - description:
564 - name: provider
565 - sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c
566 - url: "https://pub.dev"
567 - source: hosted
568 - version: "6.1.2"
569 - pub_semver:
570 - dependency: transitive
571 - description:
572 - name: pub_semver
573 - sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585"
574 - url: "https://pub.dev"
575 - source: hosted
576 - version: "2.2.0"
577 - pubspec_parse:
578 - dependency: transitive
579 - description:
580 - name: pubspec_parse
581 - sha256: "81876843eb50dc2e1e5b151792c9a985c5ed2536914115ed04e9c8528f6647b0"
582 - url: "https://pub.dev"
583 - source: hosted
584 - version: "1.4.0"
585 - quiver:
586 - dependency: transitive
587 - description:
588 - name: quiver
589 - sha256: ea0b925899e64ecdfbf9c7becb60d5b50e706ade44a85b2363be2a22d88117d2
590 - url: "https://pub.dev"
591 - source: hosted
592 - version: "3.2.2"
593 - rational:
594 - dependency: transitive
595 - description:
596 - name: rational
597 - sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336
598 - url: "https://pub.dev"
599 - source: hosted
600 - version: "2.2.3"
601 - shelf:
602 - dependency: transitive
603 - description:
604 - name: shelf
605 - sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4
606 - url: "https://pub.dev"
607 - source: hosted
608 - version: "1.4.1"
609 - shelf_web_socket:
610 - dependency: transitive
611 - description:
612 - name: shelf_web_socket
613 - sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67
614 - url: "https://pub.dev"
615 - source: hosted
616 - version: "2.0.1"
617 - sky_engine:
618 - dependency: transitive
619 - description: flutter
620 - source: sdk
621 - version: "0.0.0"
622 - socks5_proxy:
623 - dependency: transitive
624 - description:
625 - path: "."
626 - ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
627 - resolved-ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
628 - url: "https://github.com/LacticWhale/socks_dart"
629 - source: git
630 - version: "2.1.0"
631 - socks_socket:
632 - dependency: transitive
633 - description:
634 - path: "."
635 - ref: e6232c53c1595469931ababa878759a067c02e94
636 - resolved-ref: e6232c53c1595469931ababa878759a067c02e94
637 - url: "https://github.com/sneurlax/socks_socket"
638 - source: git
639 - version: "1.1.1"
640 - source_gen:
641 - dependency: transitive
642 - description:
643 - name: source_gen
644 - sha256: ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02
645 - url: "https://pub.dev"
646 - source: hosted
647 - version: "4.2.3"
648 - source_span:
649 - dependency: transitive
650 - description:
651 - name: source_span
652 - sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
653 - url: "https://pub.dev"
654 - source: hosted
655 - version: "1.10.1"
656 - sqflite:
657 - dependency: transitive
658 - description:
659 - name: sqflite
660 - sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb"
661 - url: "https://pub.dev"
662 - source: hosted
663 - version: "2.4.1"
664 - sqflite_android:
665 - dependency: transitive
666 - description:
667 - name: sqflite_android
668 - sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3"
669 - url: "https://pub.dev"
670 - source: hosted
671 - version: "2.4.0"
672 - sqflite_common:
673 - dependency: transitive
674 - description:
675 - name: sqflite_common
676 - sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709"
677 - url: "https://pub.dev"
678 - source: hosted
679 - version: "2.5.4+6"
680 - sqflite_common_ffi:
681 - dependency: transitive
682 - description:
683 - name: sqflite_common_ffi
684 - sha256: "883dd810b2b49e6e8c3b980df1829ef550a94e3f87deab5d864917d27ca6bf36"
685 - url: "https://pub.dev"
686 - source: hosted
687 - version: "2.3.4+4"
688 - sqflite_darwin:
689 - dependency: transitive
690 - description:
691 - name: sqflite_darwin
692 - sha256: "22adfd9a2c7d634041e96d6241e6e1c8138ca6817018afc5d443fef91dcefa9c"
693 - url: "https://pub.dev"
694 - source: hosted
695 - version: "2.4.1+1"
696 - sqflite_platform_interface:
697 - dependency: transitive
698 - description:
699 - name: sqflite_platform_interface
700 - sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920"
701 - url: "https://pub.dev"
702 - source: hosted
703 - version: "2.4.0"
704 - sqlite3:
705 - dependency: transitive
706 - description:
707 - name: sqlite3
708 - sha256: f393d92c71bdcc118d6203d07c991b9be0f84b1a6f89dd4f7eed348131329924
709 - url: "https://pub.dev"
710 - source: hosted
711 - version: "2.9.0"
712 - sqlite3_flutter_libs:
713 - dependency: transitive
714 - description:
715 - name: sqlite3_flutter_libs
716 - sha256: "69c80d812ef2500202ebd22002cbfc1b6565e9ff56b2f971e757fac5d42294df"
717 - url: "https://pub.dev"
718 - source: hosted
719 - version: "0.5.40"
720 - stack_trace:
721 - dependency: transitive
722 - description:
723 - name: stack_trace
724 - sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
725 - url: "https://pub.dev"
726 - source: hosted
727 - version: "1.12.1"
728 - stream_channel:
729 - dependency: transitive
730 - description:
731 - name: stream_channel
732 - sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
733 - url: "https://pub.dev"
734 - source: hosted
735 - version: "2.1.4"
736 - stream_transform:
737 - dependency: transitive
738 - description:
739 - name: stream_transform
740 - sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
741 - url: "https://pub.dev"
742 - source: hosted
743 - version: "2.1.1"
744 - string_scanner:
745 - dependency: transitive
746 - description:
747 - name: string_scanner
748 - sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
749 - url: "https://pub.dev"
750 - source: hosted
751 - version: "1.4.1"
752 - synchronized:
753 - dependency: transitive
754 - description:
755 - name: synchronized
756 - sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225"
757 - url: "https://pub.dev"
758 - source: hosted
759 - version: "3.3.0+3"
760 - term_glyph:
761 - dependency: transitive
762 - description:
763 - name: term_glyph
764 - sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
765 - url: "https://pub.dev"
766 - source: hosted
767 - version: "1.2.2"
768 - test_api:
769 - dependency: transitive
770 - description:
771 - name: test_api
772 - sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a"
773 - url: "https://pub.dev"
774 - source: hosted
775 - version: "0.7.10"
776 - torch_dart:
777 - dependency: transitive
778 - description:
779 - path: "../scripts/torch_dart"
780 - relative: true
781 - source: path
782 - version: "0.0.1"
783 - tuple:
784 - dependency: transitive
785 - description:
786 - name: tuple
787 - sha256: a97ce2013f240b2f3807bcbaf218765b6f301c3eff91092bcfa23a039e7dd151
788 - url: "https://pub.dev"
789 - source: hosted
790 - version: "2.0.2"
791 - typed_data:
792 - dependency: transitive
793 - description:
794 - name: typed_data
795 - sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
796 - url: "https://pub.dev"
797 - source: hosted
798 - version: "1.4.0"
799 - unorm_dart:
800 - dependency: transitive
801 - description:
802 - name: unorm_dart
803 - sha256: "23d8bf65605401a6a32cff99435fed66ef3dab3ddcad3454059165df46496a3b"
804 - url: "https://pub.dev"
805 - source: hosted
806 - version: "0.3.0"
807 - vector_math:
808 - dependency: transitive
809 - description:
810 - name: vector_math
811 - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
812 - url: "https://pub.dev"
813 - source: hosted
814 - version: "2.2.0"
815 - vm_service:
816 - dependency: transitive
817 - description:
818 - name: vm_service
819 - sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
820 - url: "https://pub.dev"
821 - source: hosted
822 - version: "15.0.0"
823 - watcher:
824 - dependency: transitive
825 - description:
826 - name: watcher
827 - sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104"
828 - url: "https://pub.dev"
829 - source: hosted
830 - version: "1.1.1"
831 - web:
832 - dependency: transitive
833 - description:
834 - name: web
835 - sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
836 - url: "https://pub.dev"
837 - source: hosted
838 - version: "1.1.1"
839 - web_socket:
840 - dependency: transitive
841 - description:
842 - name: web_socket
843 - sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83"
844 - url: "https://pub.dev"
845 - source: hosted
846 - version: "0.1.6"
847 - web_socket_channel:
848 - dependency: transitive
849 - description:
850 - name: web_socket_channel
851 - sha256: "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5"
852 - url: "https://pub.dev"
853 - source: hosted
854 - version: "3.0.2"
855 - xdg_directories:
856 - dependency: transitive
857 - description:
858 - name: xdg_directories
859 - sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
860 - url: "https://pub.dev"
861 - source: hosted
862 - version: "1.1.0"
863 - yaml:
864 - dependency: transitive
865 - description:
866 - name: yaml
867 - sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
868 - url: "https://pub.dev"
869 - source: hosted
870 - version: "3.1.3"
871 - yaml_edit:
872 - dependency: transitive
873 - description:
874 - name: yaml_edit
875 - sha256: fb38626579fb345ad00e674e2af3a5c9b0cc4b9bfb8fd7f7ff322c7c9e62aef5
876 - url: "https://pub.dev"
877 - source: hosted
878 - version: "2.2.2"
879 -sdks:
880 - dart: ">=3.10.0 <4.0.0"
881 - flutter: ">=3.24.0"
cw_decred/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_dogecoin/.gitignore
-2
@@ -22,8 +22,6 @@ migrate_working_dir/
22 #.vscode/
23
24 # Flutter/Dart/Pub related
25 -# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26 -/pubspec.lock
25 **/doc/api/
26 .dart_tool/
27 .flutter-plugins
cw_dogecoin/pubspec.yaml
+1 -1
@@ -25,7 +25,7 @@ dependencies:
25 blockchain_utils:
26 git:
27 url: https://github.com/cake-tech/blockchain_utils
28 - ref: cake-update-v2
28 + ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
29
30 dev_dependencies:
31 flutter_test:
cw_dogecoin/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_evm/.gitignore
-2
@@ -22,8 +22,6 @@ migrate_working_dir/
22 #.vscode/
23
24 # Flutter/Dart/Pub related
25 -# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26 -/pubspec.lock
25 **/doc/api/
26 .dart_tool/
27 .packages
cw_evm/build.yaml new
+5
@@ -0,0 +1,5 @@
1 +targets:
2 + $default:
3 + sources:
4 + exclude:
5 + - "**/.secrets.g.dart"
cw_evm/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_monero/pubspec.lock deleted
-1052
@@ -1,1052 +0,0 @@
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: "5b7468c326d2f8a4f630056404ca0d291ade42918f4a3c6233618e724f39da8e"
9 - url: "https://pub.dev"
10 - source: hosted
11 - version: "92.0.0"
12 - analyzer:
13 - dependency: transitive
14 - description:
15 - name: analyzer
16 - sha256: "70e4b1ef8003c64793a9e268a551a82869a8a96f39deb73dea28084b0e8bf75e"
17 - url: "https://pub.dev"
18 - source: hosted
19 - version: "9.0.0"
20 - args:
21 - dependency: transitive
22 - description:
23 - name: args
24 - sha256: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6
25 - url: "https://pub.dev"
26 - source: hosted
27 - version: "2.6.0"
28 - asn1lib:
29 - dependency: transitive
30 - description:
31 - name: asn1lib
32 - sha256: "4bae5ae63e6d6dd17c4aac8086f3dec26c0236f6a0f03416c6c19d830c367cf5"
33 - url: "https://pub.dev"
34 - source: hosted
35 - version: "1.5.8"
36 - async:
37 - dependency: transitive
38 - description:
39 - name: async
40 - sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
41 - url: "https://pub.dev"
42 - source: hosted
43 - version: "2.13.0"
44 - bech32:
45 - dependency: transitive
46 - description:
47 - path: "."
48 - ref: HEAD
49 - resolved-ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
50 - url: "https://github.com/cake-tech/bech32.git"
51 - source: git
52 - version: "0.2.2"
53 - bip32:
54 - dependency: "direct main"
55 - description:
56 - name: bip32
57 - sha256: "54787cd7a111e9d37394aabbf53d1fc5e2e0e0af2cd01c459147a97c0e3f8a97"
58 - url: "https://pub.dev"
59 - source: hosted
60 - version: "2.0.0"
61 - bip39:
62 - dependency: "direct main"
63 - description:
64 - name: bip39
65 - sha256: de1ee27ebe7d96b84bb3a04a4132a0a3007dcdd5ad27dd14aa87a29d97c45edc
66 - url: "https://pub.dev"
67 - source: hosted
68 - version: "1.0.6"
69 - blockchain_utils:
70 - dependency: transitive
71 - description:
72 - path: "."
73 - ref: cake-update-v2
74 - resolved-ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
75 - url: "https://github.com/cake-tech/blockchain_utils"
76 - source: git
77 - version: "3.3.0"
78 - bluez:
79 - dependency: transitive
80 - description:
81 - name: bluez
82 - sha256: "61a7204381925896a374301498f2f5399e59827c6498ae1e924aaa598751b545"
83 - url: "https://pub.dev"
84 - source: hosted
85 - version: "0.8.3"
86 - boolean_selector:
87 - dependency: transitive
88 - description:
89 - name: boolean_selector
90 - sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
91 - url: "https://pub.dev"
92 - source: hosted
93 - version: "2.1.2"
94 - bs58check:
95 - dependency: transitive
96 - description:
97 - name: bs58check
98 - sha256: c4a164d42b25c2f6bc88a8beccb9fc7d01440f3c60ba23663a20a70faf484ea9
99 - url: "https://pub.dev"
100 - source: hosted
101 - version: "1.0.2"
102 - build:
103 - dependency: transitive
104 - description:
105 - name: build
106 - sha256: a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10
107 - url: "https://pub.dev"
108 - source: hosted
109 - version: "4.0.6"
110 - build_config:
111 - dependency: transitive
112 - description:
113 - name: build_config
114 - sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71"
115 - url: "https://pub.dev"
116 - source: hosted
117 - version: "1.3.0"
118 - build_daemon:
119 - dependency: transitive
120 - description:
121 - name: build_daemon
122 - sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9"
123 - url: "https://pub.dev"
124 - source: hosted
125 - version: "4.0.2"
126 - build_runner:
127 - dependency: "direct dev"
128 - description:
129 - name: build_runner
130 - sha256: "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6"
131 - url: "https://pub.dev"
132 - source: hosted
133 - version: "2.15.0"
134 - built_collection:
135 - dependency: transitive
136 - description:
137 - name: built_collection
138 - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
139 - url: "https://pub.dev"
140 - source: hosted
141 - version: "5.1.1"
142 - built_value:
143 - dependency: transitive
144 - description:
145 - name: built_value
146 - sha256: "34e4067d30ce212937df995f03b69992eea683539ceeac7f679a1f1eba055b56"
147 - url: "https://pub.dev"
148 - source: hosted
149 - version: "8.12.6"
150 - cake_backup:
151 - dependency: transitive
152 - description:
153 - path: "."
154 - ref: main
155 - resolved-ref: "3aba867dcab6737f6707782f5db15d71f303db38"
156 - url: "https://github.com/cake-tech/cake_backup.git"
157 - source: git
158 - version: "1.0.0+1"
159 - characters:
160 - dependency: transitive
161 - description:
162 - name: characters
163 - sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
164 - url: "https://pub.dev"
165 - source: hosted
166 - version: "1.4.1"
167 - checked_yaml:
168 - dependency: transitive
169 - description:
170 - name: checked_yaml
171 - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
172 - url: "https://pub.dev"
173 - source: hosted
174 - version: "2.0.3"
175 - clock:
176 - dependency: transitive
177 - description:
178 - name: clock
179 - sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
180 - url: "https://pub.dev"
181 - source: hosted
182 - version: "1.1.2"
183 - code_builder:
184 - dependency: transitive
185 - description:
186 - name: code_builder
187 - sha256: "0ec10bf4a89e4c613960bf1e8b42c64127021740fb21640c29c909826a5eea3e"
188 - url: "https://pub.dev"
189 - source: hosted
190 - version: "4.10.1"
191 - collection:
192 - dependency: transitive
193 - description:
194 - name: collection
195 - sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
196 - url: "https://pub.dev"
197 - source: hosted
198 - version: "1.19.1"
199 - convert:
200 - dependency: transitive
201 - description:
202 - name: convert
203 - sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
204 - url: "https://pub.dev"
205 - source: hosted
206 - version: "3.1.2"
207 - crypto:
208 - dependency: transitive
209 - description:
210 - name: crypto
211 - sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
212 - url: "https://pub.dev"
213 - source: hosted
214 - version: "3.0.6"
215 - cryptography:
216 - dependency: transitive
217 - description:
218 - name: cryptography
219 - sha256: d146b76d33d94548cf035233fbc2f4338c1242fa119013bead807d033fc4ae05
220 - url: "https://pub.dev"
221 - source: hosted
222 - version: "2.7.0"
223 - cupertino_icons:
224 - dependency: transitive
225 - description:
226 - name: cupertino_icons
227 - sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
228 - url: "https://pub.dev"
229 - source: hosted
230 - version: "1.0.8"
231 - cw_core:
232 - dependency: "direct main"
233 - description:
234 - path: "../cw_core"
235 - relative: true
236 - source: path
237 - version: "0.0.1"
238 - dart_style:
239 - dependency: transitive
240 - description:
241 - name: dart_style
242 - sha256: a9c30492da18ff84efe2422ba2d319a89942d93e58eb0b73d32abe822ef54b7b
243 - url: "https://pub.dev"
244 - source: hosted
245 - version: "3.1.3"
246 - dbus:
247 - dependency: transitive
248 - description:
249 - name: dbus
250 - sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
251 - url: "https://pub.dev"
252 - source: hosted
253 - version: "0.7.11"
254 - decimal:
255 - dependency: transitive
256 - description:
257 - name: decimal
258 - sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21"
259 - url: "https://pub.dev"
260 - source: hosted
261 - version: "2.3.3"
262 - encrypt:
263 - dependency: "direct main"
264 - description:
265 - name: encrypt
266 - sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2"
267 - url: "https://pub.dev"
268 - source: hosted
269 - version: "5.0.3"
270 - fake_async:
271 - dependency: transitive
272 - description:
273 - name: fake_async
274 - sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
275 - url: "https://pub.dev"
276 - source: hosted
277 - version: "1.3.3"
278 - fast_base58:
279 - dependency: transitive
280 - description:
281 - name: fast_base58
282 - sha256: "611f65633b734f27a850b51371b3eba993a5165650e12e8e7b02959f3768ba06"
283 - url: "https://pub.dev"
284 - source: hosted
285 - version: "0.2.1"
286 - ffi:
287 - dependency: "direct main"
288 - description:
289 - name: ffi
290 - sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
291 - url: "https://pub.dev"
292 - source: hosted
293 - version: "2.1.3"
294 - file:
295 - dependency: transitive
296 - description:
297 - name: file
298 - sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
299 - url: "https://pub.dev"
300 - source: hosted
301 - version: "7.0.1"
302 - fixnum:
303 - dependency: transitive
304 - description:
305 - name: fixnum
306 - sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
307 - url: "https://pub.dev"
308 - source: hosted
309 - version: "1.1.1"
310 - flutter:
311 - dependency: "direct main"
312 - description: flutter
313 - source: sdk
314 - version: "0.0.0"
315 - flutter_mobx:
316 - dependency: "direct main"
317 - description:
318 - name: flutter_mobx
319 - sha256: ba5e93467866a2991259dc51cffd41ef45f695c667c2b8e7b087bf24118b50fe
320 - url: "https://pub.dev"
321 - source: hosted
322 - version: "2.3.0"
323 - flutter_test:
324 - dependency: "direct dev"
325 - description: flutter
326 - source: sdk
327 - version: "0.0.0"
328 - flutter_web_bluetooth:
329 - dependency: transitive
330 - description:
331 - name: flutter_web_bluetooth
332 - sha256: ad26a1b3fef95b86ea5f63793b9a0cdc1a33490f35d754e4e711046cae3ebbf8
333 - url: "https://pub.dev"
334 - source: hosted
335 - version: "1.1.0"
336 - glob:
337 - dependency: transitive
338 - description:
339 - name: glob
340 - sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
341 - url: "https://pub.dev"
342 - source: hosted
343 - version: "2.1.3"
344 - graphs:
345 - dependency: transitive
346 - description:
347 - name: graphs
348 - sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
349 - url: "https://pub.dev"
350 - source: hosted
351 - version: "2.3.2"
352 - hashlib:
353 - dependency: transitive
354 - description:
355 - name: hashlib
356 - sha256: e13e8237d93fb275cd1c55fc339bb90638994d1a4f140c7ee270173b51f3d169
357 - url: "https://pub.dev"
358 - source: hosted
359 - version: "1.21.1"
360 - hashlib_codecs:
361 - dependency: transitive
362 - description:
363 - name: hashlib_codecs
364 - sha256: "8cea9ccafcfeaa7324d2ae52c61c69f7ff71f4237507a018caab31b9e416e3b1"
365 - url: "https://pub.dev"
366 - source: hosted
367 - version: "2.6.0"
368 - hex:
369 - dependency: transitive
370 - description:
371 - name: hex
372 - sha256: "4e7cd54e4b59ba026432a6be2dd9d96e4c5205725194997193bf871703b82c4a"
373 - url: "https://pub.dev"
374 - source: hosted
375 - version: "0.2.0"
376 - hive:
377 - dependency: "direct dev"
378 - description:
379 - name: hive
380 - sha256: "5184b6ea455689754578267c31c3b0b329cccf20a5f2bfdab6941c29c3d3c09a"
381 - url: "https://pub.dev"
382 - source: hosted
383 - version: "2.0.1"
384 - http:
385 - dependency: "direct main"
386 - description:
387 - name: http
388 - sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
389 - url: "https://pub.dev"
390 - source: hosted
391 - version: "1.3.0"
392 - http_multi_server:
393 - dependency: transitive
394 - description:
395 - name: http_multi_server
396 - sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
397 - url: "https://pub.dev"
398 - source: hosted
399 - version: "3.2.2"
400 - http_parser:
401 - dependency: transitive
402 - description:
403 - name: http_parser
404 - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
405 - url: "https://pub.dev"
406 - source: hosted
407 - version: "4.0.2"
408 - intl:
409 - dependency: "direct main"
410 - description:
411 - name: intl
412 - sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
413 - url: "https://pub.dev"
414 - source: hosted
415 - version: "0.19.0"
416 - io:
417 - dependency: transitive
418 - description:
419 - name: io
420 - sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
421 - url: "https://pub.dev"
422 - source: hosted
423 - version: "1.0.5"
424 - js:
425 - dependency: transitive
426 - description:
427 - name: js
428 - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
429 - url: "https://pub.dev"
430 - source: hosted
431 - version: "0.6.7"
432 - json_annotation:
433 - dependency: transitive
434 - description:
435 - name: json_annotation
436 - sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
437 - url: "https://pub.dev"
438 - source: hosted
439 - version: "4.9.0"
440 - leak_tracker:
441 - dependency: transitive
442 - description:
443 - name: leak_tracker
444 - sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
445 - url: "https://pub.dev"
446 - source: hosted
447 - version: "11.0.2"
448 - leak_tracker_flutter_testing:
449 - dependency: transitive
450 - description:
451 - name: leak_tracker_flutter_testing
452 - sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
453 - url: "https://pub.dev"
454 - source: hosted
455 - version: "3.0.10"
456 - leak_tracker_testing:
457 - dependency: transitive
458 - description:
459 - name: leak_tracker_testing
460 - sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
461 - url: "https://pub.dev"
462 - source: hosted
463 - version: "3.0.2"
464 - ledger_flutter_plus:
465 - dependency: "direct main"
466 - description:
467 - name: ledger_flutter_plus
468 - sha256: "59c5a6062505c721c2ca909fa085c52cffe93de995174b8418b54a6acf52eb70"
469 - url: "https://pub.dev"
470 - source: hosted
471 - version: "1.5.6"
472 - ledger_usb_plus:
473 - dependency: transitive
474 - description:
475 - name: ledger_usb_plus
476 - sha256: "911df2d1d55cdae612ff2c9db140cf71a9b28a67ba16adfdc4983cd9f02c531e"
477 - url: "https://pub.dev"
478 - source: hosted
479 - version: "1.0.8"
480 - logging:
481 - dependency: transitive
482 - description:
483 - name: logging
484 - sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
485 - url: "https://pub.dev"
486 - source: hosted
487 - version: "1.3.0"
488 - matcher:
489 - dependency: transitive
490 - description:
491 - name: matcher
492 - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861
493 - url: "https://pub.dev"
494 - source: hosted
495 - version: "0.12.19"
496 - material_color_utilities:
497 - dependency: transitive
498 - description:
499 - name: material_color_utilities
500 - sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
501 - url: "https://pub.dev"
502 - source: hosted
503 - version: "0.13.0"
504 - meta:
505 - dependency: transitive
506 - description:
507 - name: meta
508 - sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
509 - url: "https://pub.dev"
510 - source: hosted
511 - version: "1.17.0"
512 - mime:
513 - dependency: transitive
514 - description:
515 - name: mime
516 - sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
517 - url: "https://pub.dev"
518 - source: hosted
519 - version: "2.0.0"
520 - mobx:
521 - dependency: "direct main"
522 - description:
523 - name: mobx
524 - sha256: "25ea9a3ee69243d578fb6288721d8eeb18550d0391c32f896d377d994154bff2"
525 - url: "https://pub.dev"
526 - source: hosted
527 - version: "2.6.0"
528 - mobx_codegen:
529 - dependency: "direct dev"
530 - description:
531 - name: mobx_codegen
532 - sha256: "6529bcae074838004b58ad01fbe4966be182a176aacfb723686985986ebac19f"
533 - url: "https://pub.dev"
534 - source: hosted
535 - version: "2.7.7"
536 - mockito:
537 - dependency: "direct dev"
538 - description:
539 - name: mockito
540 - sha256: eff30d002f0c8bf073b6f929df4483b543133fcafce056870163587b03f1d422
541 - url: "https://pub.dev"
542 - source: hosted
543 - version: "5.6.4"
544 - monero:
545 - dependency: "direct main"
546 - description:
547 - path: "impls/monero.dart"
548 - ref: "3bfb3856a838f2bf6b729501837bb0295dedf25d"
549 - resolved-ref: "3bfb3856a838f2bf6b729501837bb0295dedf25d"
550 - url: "https://github.com/mrcyjanek/monero_c.git"
551 - source: git
552 - version: "0.0.0"
553 - mutex:
554 - dependency: "direct main"
555 - description:
556 - name: mutex
557 - sha256: "8827da25de792088eb33e572115a5eb0d61d61a3c01acbc8bcbe76ed78f1a1f2"
558 - url: "https://pub.dev"
559 - source: hosted
560 - version: "3.1.0"
561 - nested:
562 - dependency: transitive
563 - description:
564 - name: nested
565 - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
566 - url: "https://pub.dev"
567 - source: hosted
568 - version: "1.0.0"
569 - on_chain:
570 - dependency: transitive
571 - description:
572 - path: "."
573 - ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
574 - resolved-ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
575 - url: "https://github.com/cake-tech/on_chain.git"
576 - source: git
577 - version: "3.7.0"
578 - package_config:
579 - dependency: transitive
580 - description:
581 - name: package_config
582 - sha256: "92d4488434b520a62570293fbd33bb556c7d49230791c1b4bbd973baf6d2dc67"
583 - url: "https://pub.dev"
584 - source: hosted
585 - version: "2.1.1"
586 - path:
587 - dependency: transitive
588 - description:
589 - name: path
590 - sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
591 - url: "https://pub.dev"
592 - source: hosted
593 - version: "1.9.1"
594 - path_provider:
595 - dependency: "direct main"
596 - description:
597 - name: path_provider
598 - sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
599 - url: "https://pub.dev"
600 - source: hosted
601 - version: "2.1.5"
602 - path_provider_android:
603 - dependency: transitive
604 - description:
605 - name: path_provider_android
606 - sha256: "4adf4fd5423ec60a29506c76581bc05854c55e3a0b72d35bb28d661c9686edf2"
607 - url: "https://pub.dev"
608 - source: hosted
609 - version: "2.2.15"
610 - path_provider_foundation:
611 - dependency: transitive
612 - description:
613 - name: path_provider_foundation
614 - sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
615 - url: "https://pub.dev"
616 - source: hosted
617 - version: "2.4.1"
618 - path_provider_linux:
619 - dependency: transitive
620 - description:
621 - name: path_provider_linux
622 - sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
623 - url: "https://pub.dev"
624 - source: hosted
625 - version: "2.2.1"
626 - path_provider_platform_interface:
627 - dependency: transitive
628 - description:
629 - name: path_provider_platform_interface
630 - sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
631 - url: "https://pub.dev"
632 - source: hosted
633 - version: "2.1.2"
634 - path_provider_windows:
635 - dependency: transitive
636 - description:
637 - name: path_provider_windows
638 - sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
639 - url: "https://pub.dev"
640 - source: hosted
641 - version: "2.3.0"
642 - petitparser:
643 - dependency: transitive
644 - description:
645 - name: petitparser
646 - sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27
647 - url: "https://pub.dev"
648 - source: hosted
649 - version: "6.0.2"
650 - platform:
651 - dependency: transitive
652 - description:
653 - name: platform
654 - sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
655 - url: "https://pub.dev"
656 - source: hosted
657 - version: "3.1.6"
658 - plugin_platform_interface:
659 - dependency: transitive
660 - description:
661 - name: plugin_platform_interface
662 - sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
663 - url: "https://pub.dev"
664 - source: hosted
665 - version: "2.1.8"
666 - pointycastle:
667 - dependency: transitive
668 - description:
669 - name: pointycastle
670 - sha256: "4be0097fcf3fd3e8449e53730c631200ebc7b88016acecab2b0da2f0149222fe"
671 - url: "https://pub.dev"
672 - source: hosted
673 - version: "3.9.1"
674 - polyseed:
675 - dependency: "direct main"
676 - description:
677 - name: polyseed
678 - sha256: ccc6ba0ed3976837e770a324a6295fbf3d7c0d05fc0fa1906e36479b07c2675b
679 - url: "https://pub.dev"
680 - source: hosted
681 - version: "0.0.7"
682 - pool:
683 - dependency: transitive
684 - description:
685 - name: pool
686 - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
687 - url: "https://pub.dev"
688 - source: hosted
689 - version: "1.5.1"
690 - protobuf:
691 - dependency: transitive
692 - description:
693 - name: protobuf
694 - sha256: "68645b24e0716782e58948f8467fd42a880f255096a821f9e7d0ec625b00c84d"
695 - url: "https://pub.dev"
696 - source: hosted
697 - version: "3.1.0"
698 - provider:
699 - dependency: transitive
700 - description:
701 - name: provider
702 - sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c
703 - url: "https://pub.dev"
704 - source: hosted
705 - version: "6.1.2"
706 - pub_semver:
707 - dependency: transitive
708 - description:
709 - name: pub_semver
710 - sha256: "7b3cfbf654f3edd0c6298ecd5be782ce997ddf0e00531b9464b55245185bbbbd"
711 - url: "https://pub.dev"
712 - source: hosted
713 - version: "2.1.5"
714 - pubspec_parse:
715 - dependency: transitive
716 - description:
717 - name: pubspec_parse
718 - sha256: "81876843eb50dc2e1e5b151792c9a985c5ed2536914115ed04e9c8528f6647b0"
719 - url: "https://pub.dev"
720 - source: hosted
721 - version: "1.4.0"
722 - rational:
723 - dependency: transitive
724 - description:
725 - name: rational
726 - sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336
727 - url: "https://pub.dev"
728 - source: hosted
729 - version: "2.2.3"
730 - rxdart:
731 - dependency: transitive
732 - description:
733 - name: rxdart
734 - sha256: "5c3004a4a8dbb94bd4bf5412a4def4acdaa12e12f269737a5751369e12d1a962"
735 - url: "https://pub.dev"
736 - source: hosted
737 - version: "0.28.0"
738 - shelf:
739 - dependency: transitive
740 - description:
741 - name: shelf
742 - sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4
743 - url: "https://pub.dev"
744 - source: hosted
745 - version: "1.4.1"
746 - shelf_web_socket:
747 - dependency: transitive
748 - description:
749 - name: shelf_web_socket
750 - sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67
751 - url: "https://pub.dev"
752 - source: hosted
753 - version: "2.0.1"
754 - sky_engine:
755 - dependency: transitive
756 - description: flutter
757 - source: sdk
758 - version: "0.0.0"
759 - socks5_proxy:
760 - dependency: transitive
761 - description:
762 - path: "."
763 - ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
764 - resolved-ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
765 - url: "https://github.com/LacticWhale/socks_dart"
766 - source: git
767 - version: "2.1.0"
768 - socks_socket:
769 - dependency: transitive
770 - description:
771 - path: "."
772 - ref: e6232c53c1595469931ababa878759a067c02e94
773 - resolved-ref: e6232c53c1595469931ababa878759a067c02e94
774 - url: "https://github.com/sneurlax/socks_socket"
775 - source: git
776 - version: "1.1.1"
777 - source_gen:
778 - dependency: transitive
779 - description:
780 - name: source_gen
781 - sha256: ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02
782 - url: "https://pub.dev"
783 - source: hosted
784 - version: "4.2.3"
785 - source_span:
786 - dependency: transitive
787 - description:
788 - name: source_span
789 - sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
790 - url: "https://pub.dev"
791 - source: hosted
792 - version: "1.10.1"
793 - sqflite:
794 - dependency: transitive
795 - description:
796 - name: sqflite
797 - sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb"
798 - url: "https://pub.dev"
799 - source: hosted
800 - version: "2.4.1"
801 - sqflite_android:
802 - dependency: transitive
803 - description:
804 - name: sqflite_android
805 - sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3"
806 - url: "https://pub.dev"
807 - source: hosted
808 - version: "2.4.0"
809 - sqflite_common:
810 - dependency: transitive
811 - description:
812 - name: sqflite_common
813 - sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709"
814 - url: "https://pub.dev"
815 - source: hosted
816 - version: "2.5.4+6"
817 - sqflite_common_ffi:
818 - dependency: "direct dev"
819 - description:
820 - name: sqflite_common_ffi
821 - sha256: "883dd810b2b49e6e8c3b980df1829ef550a94e3f87deab5d864917d27ca6bf36"
822 - url: "https://pub.dev"
823 - source: hosted
824 - version: "2.3.4+4"
825 - sqflite_darwin:
826 - dependency: transitive
827 - description:
828 - name: sqflite_darwin
829 - sha256: "22adfd9a2c7d634041e96d6241e6e1c8138ca6817018afc5d443fef91dcefa9c"
830 - url: "https://pub.dev"
831 - source: hosted
832 - version: "2.4.1+1"
833 - sqflite_platform_interface:
834 - dependency: transitive
835 - description:
836 - name: sqflite_platform_interface
837 - sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920"
838 - url: "https://pub.dev"
839 - source: hosted
840 - version: "2.4.0"
841 - sqlite3:
842 - dependency: transitive
843 - description:
844 - name: sqlite3
845 - sha256: f393d92c71bdcc118d6203d07c991b9be0f84b1a6f89dd4f7eed348131329924
846 - url: "https://pub.dev"
847 - source: hosted
848 - version: "2.9.0"
849 - sqlite3_flutter_libs:
850 - dependency: transitive
851 - description:
852 - name: sqlite3_flutter_libs
853 - sha256: "69c80d812ef2500202ebd22002cbfc1b6565e9ff56b2f971e757fac5d42294df"
854 - url: "https://pub.dev"
855 - source: hosted
856 - version: "0.5.40"
857 - stack_trace:
858 - dependency: transitive
859 - description:
860 - name: stack_trace
861 - sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
862 - url: "https://pub.dev"
863 - source: hosted
864 - version: "1.12.1"
865 - stream_channel:
866 - dependency: transitive
867 - description:
868 - name: stream_channel
869 - sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
870 - url: "https://pub.dev"
871 - source: hosted
872 - version: "2.1.4"
873 - stream_transform:
874 - dependency: transitive
875 - description:
876 - name: stream_transform
877 - sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
878 - url: "https://pub.dev"
879 - source: hosted
880 - version: "2.1.1"
881 - string_scanner:
882 - dependency: transitive
883 - description:
884 - name: string_scanner
885 - sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
886 - url: "https://pub.dev"
887 - source: hosted
888 - version: "1.4.1"
889 - synchronized:
890 - dependency: transitive
891 - description:
892 - name: synchronized
893 - sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225"
894 - url: "https://pub.dev"
895 - source: hosted
896 - version: "3.3.0+3"
897 - term_glyph:
898 - dependency: transitive
899 - description:
900 - name: term_glyph
901 - sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
902 - url: "https://pub.dev"
903 - source: hosted
904 - version: "1.2.2"
905 - test_api:
906 - dependency: transitive
907 - description:
908 - name: test_api
909 - sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a"
910 - url: "https://pub.dev"
911 - source: hosted
912 - version: "0.7.10"
913 - torch_dart:
914 - dependency: transitive
915 - description:
916 - path: "../scripts/torch_dart"
917 - relative: true
918 - source: path
919 - version: "0.0.1"
920 - trezor_flutter:
921 - dependency: "direct main"
922 - description:
923 - path: trezor-flutter
924 - ref: "7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97"
925 - resolved-ref: "7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97"
926 - url: "https://github.com/cake-tech/trezor-flutter.git"
927 - source: git
928 - version: "0.1.0"
929 - trezor_usb_transport:
930 - dependency: transitive
931 - description:
932 - path: trezor_usb_transport
933 - ref: "7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97"
934 - resolved-ref: "7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97"
935 - url: "https://github.com/cake-tech/trezor-flutter.git"
936 - source: git
937 - version: "0.0.1"
938 - tuple:
939 - dependency: transitive
940 - description:
941 - name: tuple
942 - sha256: a97ce2013f240b2f3807bcbaf218765b6f301c3eff91092bcfa23a039e7dd151
943 - url: "https://pub.dev"
944 - source: hosted
945 - version: "2.0.2"
946 - typed_data:
947 - dependency: transitive
948 - description:
949 - name: typed_data
950 - sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
951 - url: "https://pub.dev"
952 - source: hosted
953 - version: "1.4.0"
954 - universal_ble:
955 - dependency: transitive
956 - description:
957 - name: universal_ble
958 - sha256: "8325ca9f5cce2fba2b4efef74a4fcfe7144f303b409d6fc6ed16197b00a1a241"
959 - url: "https://pub.dev"
960 - source: hosted
961 - version: "1.2.0"
962 - universal_platform:
963 - dependency: transitive
964 - description:
965 - name: universal_platform
966 - sha256: "64e16458a0ea9b99260ceb5467a214c1f298d647c659af1bff6d3bf82536b1ec"
967 - url: "https://pub.dev"
968 - source: hosted
969 - version: "1.1.0"
970 - unorm_dart:
971 - dependency: transitive
972 - description:
973 - name: unorm_dart
974 - sha256: "23d8bf65605401a6a32cff99435fed66ef3dab3ddcad3454059165df46496a3b"
975 - url: "https://pub.dev"
976 - source: hosted
977 - version: "0.3.0"
978 - vector_math:
979 - dependency: transitive
980 - description:
981 - name: vector_math
982 - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
983 - url: "https://pub.dev"
984 - source: hosted
985 - version: "2.2.0"
986 - vm_service:
987 - dependency: transitive
988 - description:
989 - name: vm_service
990 - sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
991 - url: "https://pub.dev"
992 - source: hosted
993 - version: "15.0.0"
994 - watcher:
995 - dependency: "direct overridden"
996 - description:
997 - name: watcher
998 - sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104"
999 - url: "https://pub.dev"
1000 - source: hosted
1001 - version: "1.1.1"
1002 - web:
1003 - dependency: transitive
1004 - description:
1005 - name: web
1006 - sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
1007 - url: "https://pub.dev"
1008 - source: hosted
1009 - version: "1.1.1"
1010 - web_socket:
1011 - dependency: transitive
1012 - description:
1013 - name: web_socket
1014 - sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83"
1015 - url: "https://pub.dev"
1016 - source: hosted
1017 - version: "0.1.6"
1018 - web_socket_channel:
1019 - dependency: transitive
1020 - description:
1021 - name: web_socket_channel
1022 - sha256: "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5"
1023 - url: "https://pub.dev"
1024 - source: hosted
1025 - version: "3.0.2"
1026 - xdg_directories:
1027 - dependency: transitive
1028 - description:
1029 - name: xdg_directories
1030 - sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
1031 - url: "https://pub.dev"
1032 - source: hosted
1033 - version: "1.1.0"
1034 - xml:
1035 - dependency: transitive
1036 - description:
1037 - name: xml
1038 - sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226
1039 - url: "https://pub.dev"
1040 - source: hosted
1041 - version: "6.5.0"
1042 - yaml:
1043 - dependency: transitive
1044 - description:
1045 - name: yaml
1046 - sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
1047 - url: "https://pub.dev"
1048 - source: hosted
1049 - version: "3.1.3"
1050 -sdks:
1051 - dart: ">=3.9.0 <4.0.0"
1052 - flutter: ">=3.24.0"
cw_monero/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_mweb/.gitignore
-2
@@ -22,8 +22,6 @@ migrate_working_dir/
22 #.vscode/
23
24 # Flutter/Dart/Pub related
25 -# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26 -/pubspec.lock
25 **/doc/api/
26 .dart_tool/
27 .packages
cw_mweb/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_nano/build.yaml new
+5
@@ -0,0 +1,5 @@
1 +targets:
2 + $default:
3 + sources:
4 + exclude:
5 + - "**/.secrets.g.dart"
cw_nano/pubspec.lock deleted
-991
@@ -1,991 +0,0 @@
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 - asn1lib:
29 - dependency: transitive
30 - description:
31 - name: asn1lib
32 - sha256: "1c296cd268f486cabcc3930e9b93a8133169305f18d722916e675959a88f6d2c"
33 - url: "https://pub.dev"
34 - source: hosted
35 - version: "1.5.9"
36 - async:
37 - dependency: transitive
38 - description:
39 - name: async
40 - sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
41 - url: "https://pub.dev"
42 - source: hosted
43 - version: "2.13.0"
44 - bech32:
45 - dependency: transitive
46 - description:
47 - path: "."
48 - ref: HEAD
49 - resolved-ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
50 - url: "https://github.com/cake-tech/bech32.git"
51 - source: git
52 - version: "0.2.2"
53 - bip32:
54 - dependency: "direct main"
55 - description:
56 - name: bip32
57 - sha256: "54787cd7a111e9d37394aabbf53d1fc5e2e0e0af2cd01c459147a97c0e3f8a97"
58 - url: "https://pub.dev"
59 - source: hosted
60 - version: "2.0.0"
61 - bip39:
62 - dependency: "direct main"
63 - description:
64 - name: bip39
65 - sha256: de1ee27ebe7d96b84bb3a04a4132a0a3007dcdd5ad27dd14aa87a29d97c45edc
66 - url: "https://pub.dev"
67 - source: hosted
68 - version: "1.0.6"
69 - blockchain_utils:
70 - dependency: transitive
71 - description:
72 - path: "."
73 - ref: cake-update-v2
74 - resolved-ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
75 - url: "https://github.com/cake-tech/blockchain_utils"
76 - source: git
77 - version: "3.3.0"
78 - boolean_selector:
79 - dependency: transitive
80 - description:
81 - name: boolean_selector
82 - sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
83 - url: "https://pub.dev"
84 - source: hosted
85 - version: "2.1.2"
86 - bs58check:
87 - dependency: transitive
88 - description:
89 - name: bs58check
90 - sha256: c4a164d42b25c2f6bc88a8beccb9fc7d01440f3c60ba23663a20a70faf484ea9
91 - url: "https://pub.dev"
92 - source: hosted
93 - version: "1.0.2"
94 - build:
95 - dependency: transitive
96 - description:
97 - name: build
98 - sha256: a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10
99 - url: "https://pub.dev"
100 - source: hosted
101 - version: "4.0.6"
102 - build_config:
103 - dependency: transitive
104 - description:
105 - name: build_config
106 - sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71"
107 - url: "https://pub.dev"
108 - source: hosted
109 - version: "1.3.0"
110 - build_daemon:
111 - dependency: transitive
112 - description:
113 - name: build_daemon
114 - sha256: "8e928697a82be082206edb0b9c99c5a4ad6bc31c9e9b8b2f291ae65cd4a25daa"
115 - url: "https://pub.dev"
116 - source: hosted
117 - version: "4.0.4"
118 - build_runner:
119 - dependency: "direct dev"
120 - description:
121 - name: build_runner
122 - sha256: "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6"
123 - url: "https://pub.dev"
124 - source: hosted
125 - version: "2.15.0"
126 - built_collection:
127 - dependency: transitive
128 - description:
129 - name: built_collection
130 - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
131 - url: "https://pub.dev"
132 - source: hosted
133 - version: "5.1.1"
134 - built_value:
135 - dependency: transitive
136 - description:
137 - name: built_value
138 - sha256: "082001b5c3dc495d4a42f1d5789990505df20d8547d42507c29050af6933ee27"
139 - url: "https://pub.dev"
140 - source: hosted
141 - version: "8.10.1"
142 - cake_backup:
143 - dependency: transitive
144 - description:
145 - path: "."
146 - ref: main
147 - resolved-ref: "3aba867dcab6737f6707782f5db15d71f303db38"
148 - url: "https://github.com/cake-tech/cake_backup.git"
149 - source: git
150 - version: "1.0.0+1"
151 - characters:
152 - dependency: transitive
153 - description:
154 - name: characters
155 - sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
156 - url: "https://pub.dev"
157 - source: hosted
158 - version: "1.4.1"
159 - checked_yaml:
160 - dependency: transitive
161 - description:
162 - name: checked_yaml
163 - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
164 - url: "https://pub.dev"
165 - source: hosted
166 - version: "2.0.3"
167 - clock:
168 - dependency: transitive
169 - description:
170 - name: clock
171 - sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
172 - url: "https://pub.dev"
173 - source: hosted
174 - version: "1.1.2"
175 - collection:
176 - dependency: transitive
177 - description:
178 - name: collection
179 - sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
180 - url: "https://pub.dev"
181 - source: hosted
182 - version: "1.19.1"
183 - convert:
184 - dependency: transitive
185 - description:
186 - name: convert
187 - sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
188 - url: "https://pub.dev"
189 - source: hosted
190 - version: "3.1.2"
191 - crypto:
192 - dependency: transitive
193 - description:
194 - name: crypto
195 - sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
196 - url: "https://pub.dev"
197 - source: hosted
198 - version: "3.0.6"
199 - cryptography:
200 - dependency: transitive
201 - description:
202 - name: cryptography
203 - sha256: d146b76d33d94548cf035233fbc2f4338c1242fa119013bead807d033fc4ae05
204 - url: "https://pub.dev"
205 - source: hosted
206 - version: "2.7.0"
207 - cupertino_icons:
208 - dependency: transitive
209 - description:
210 - name: cupertino_icons
211 - sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
212 - url: "https://pub.dev"
213 - source: hosted
214 - version: "1.0.8"
215 - cw_core:
216 - dependency: "direct main"
217 - description:
218 - path: "../cw_core"
219 - relative: true
220 - source: path
221 - version: "0.0.1"
222 - dart_style:
223 - dependency: transitive
224 - description:
225 - name: dart_style
226 - sha256: "29f7ecc274a86d32920b1d9cfc7502fa87220da41ec60b55f329559d5732e2b2"
227 - url: "https://pub.dev"
228 - source: hosted
229 - version: "3.1.7"
230 - decimal:
231 - dependency: "direct main"
232 - description:
233 - name: decimal
234 - sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21"
235 - url: "https://pub.dev"
236 - source: hosted
237 - version: "2.3.3"
238 - ed25519_hd_key:
239 - dependency: "direct main"
240 - description:
241 - name: ed25519_hd_key
242 - sha256: "31e191ec97492873067e46dc9cc0c7d55170559c83a478400feffa0627acaccf"
243 - url: "https://pub.dev"
244 - source: hosted
245 - version: "2.3.0"
246 - encrypt:
247 - dependency: transitive
248 - description:
249 - name: encrypt
250 - sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2"
251 - url: "https://pub.dev"
252 - source: hosted
253 - version: "5.0.3"
254 - fake_async:
255 - dependency: transitive
256 - description:
257 - name: fake_async
258 - sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
259 - url: "https://pub.dev"
260 - source: hosted
261 - version: "1.3.3"
262 - ffi:
263 - dependency: transitive
264 - description:
265 - name: ffi
266 - sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
267 - url: "https://pub.dev"
268 - source: hosted
269 - version: "2.1.3"
270 - file:
271 - dependency: transitive
272 - description:
273 - name: file
274 - sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
275 - url: "https://pub.dev"
276 - source: hosted
277 - version: "7.0.1"
278 - fixnum:
279 - dependency: transitive
280 - description:
281 - name: fixnum
282 - sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
283 - url: "https://pub.dev"
284 - source: hosted
285 - version: "1.1.1"
286 - fixnum_nanodart:
287 - dependency: transitive
288 - description:
289 - name: fixnum_nanodart
290 - sha256: "4b0132d11ecddc0d2ca64b6d7dee6726db432ed02cac1349d7532a08be5c54fc"
291 - url: "https://pub.dev"
292 - source: hosted
293 - version: "1.0.0"
294 - flutter:
295 - dependency: "direct main"
296 - description: flutter
297 - source: sdk
298 - version: "0.0.0"
299 - flutter_mobx:
300 - dependency: transitive
301 - description:
302 - name: flutter_mobx
303 - sha256: ba5e93467866a2991259dc51cffd41ef45f695c667c2b8e7b087bf24118b50fe
304 - url: "https://pub.dev"
305 - source: hosted
306 - version: "2.3.0"
307 - flutter_test:
308 - dependency: "direct dev"
309 - description: flutter
310 - source: sdk
311 - version: "0.0.0"
312 - flutter_web_plugins:
313 - dependency: transitive
314 - description: flutter
315 - source: sdk
316 - version: "0.0.0"
317 - glob:
318 - dependency: transitive
319 - description:
320 - name: glob
321 - sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
322 - url: "https://pub.dev"
323 - source: hosted
324 - version: "2.1.3"
325 - graphs:
326 - dependency: transitive
327 - description:
328 - name: graphs
329 - sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
330 - url: "https://pub.dev"
331 - source: hosted
332 - version: "2.3.2"
333 - hex:
334 - dependency: "direct main"
335 - description:
336 - name: hex
337 - sha256: "4e7cd54e4b59ba026432a6be2dd9d96e4c5205725194997193bf871703b82c4a"
338 - url: "https://pub.dev"
339 - source: hosted
340 - version: "0.2.0"
341 - hive:
342 - dependency: "direct dev"
343 - description:
344 - name: hive
345 - sha256: "5184b6ea455689754578267c31c3b0b329cccf20a5f2bfdab6941c29c3d3c09a"
346 - url: "https://pub.dev"
347 - source: hosted
348 - version: "2.0.1"
349 - http:
350 - dependency: "direct main"
351 - description:
352 - name: http
353 - sha256: "2c11f3f94c687ee9bad77c171151672986360b2b001d109814ee7140b2cf261b"
354 - url: "https://pub.dev"
355 - source: hosted
356 - version: "1.4.0"
357 - http_multi_server:
358 - dependency: transitive
359 - description:
360 - name: http_multi_server
361 - sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
362 - url: "https://pub.dev"
363 - source: hosted
364 - version: "3.2.2"
365 - http_parser:
366 - dependency: transitive
367 - description:
368 - name: http_parser
369 - sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
370 - url: "https://pub.dev"
371 - source: hosted
372 - version: "4.1.2"
373 - intl:
374 - dependency: transitive
375 - description:
376 - name: intl
377 - sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
378 - url: "https://pub.dev"
379 - source: hosted
380 - version: "0.19.0"
381 - io:
382 - dependency: transitive
383 - description:
384 - name: io
385 - sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
386 - url: "https://pub.dev"
387 - source: hosted
388 - version: "1.0.5"
389 - js:
390 - dependency: transitive
391 - description:
392 - name: js
393 - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
394 - url: "https://pub.dev"
395 - source: hosted
396 - version: "0.6.7"
397 - json_annotation:
398 - dependency: transitive
399 - description:
400 - name: json_annotation
401 - sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
402 - url: "https://pub.dev"
403 - source: hosted
404 - version: "4.9.0"
405 - leak_tracker:
406 - dependency: transitive
407 - description:
408 - name: leak_tracker
409 - sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
410 - url: "https://pub.dev"
411 - source: hosted
412 - version: "11.0.2"
413 - leak_tracker_flutter_testing:
414 - dependency: transitive
415 - description:
416 - name: leak_tracker_flutter_testing
417 - sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
418 - url: "https://pub.dev"
419 - source: hosted
420 - version: "3.0.10"
421 - leak_tracker_testing:
422 - dependency: transitive
423 - description:
424 - name: leak_tracker_testing
425 - sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
426 - url: "https://pub.dev"
427 - source: hosted
428 - version: "3.0.2"
429 - libcrypto:
430 - dependency: "direct main"
431 - description:
432 - name: libcrypto
433 - sha256: "18a97db8d88147b0b60d2755f29b5e4944181c4c1a9f52bd1ecbea1b0a5aab03"
434 - url: "https://pub.dev"
435 - source: hosted
436 - version: "0.2.2"
437 - logging:
438 - dependency: transitive
439 - description:
440 - name: logging
441 - sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
442 - url: "https://pub.dev"
443 - source: hosted
444 - version: "1.3.0"
445 - matcher:
446 - dependency: transitive
447 - description:
448 - name: matcher
449 - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861
450 - url: "https://pub.dev"
451 - source: hosted
452 - version: "0.12.19"
453 - material_color_utilities:
454 - dependency: transitive
455 - description:
456 - name: material_color_utilities
457 - sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
458 - url: "https://pub.dev"
459 - source: hosted
460 - version: "0.13.0"
461 - meta:
462 - dependency: transitive
463 - description:
464 - name: meta
465 - sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
466 - url: "https://pub.dev"
467 - source: hosted
468 - version: "1.17.0"
469 - mime:
470 - dependency: transitive
471 - description:
472 - name: mime
473 - sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
474 - url: "https://pub.dev"
475 - source: hosted
476 - version: "2.0.0"
477 - mobx:
478 - dependency: "direct main"
479 - description:
480 - name: mobx
481 - sha256: "25ea9a3ee69243d578fb6288721d8eeb18550d0391c32f896d377d994154bff2"
482 - url: "https://pub.dev"
483 - source: hosted
484 - version: "2.6.0"
485 - mobx_codegen:
486 - dependency: "direct dev"
487 - description:
488 - name: mobx_codegen
489 - sha256: "6529bcae074838004b58ad01fbe4966be182a176aacfb723686985986ebac19f"
490 - url: "https://pub.dev"
491 - source: hosted
492 - version: "2.7.7"
493 - nanodart:
494 - dependency: transitive
495 - description:
496 - name: nanodart
497 - sha256: "4b2f42d60307b54e8cf384d6193a567d07f8efd773858c0d5948246153c13282"
498 - url: "https://pub.dev"
499 - source: hosted
500 - version: "2.0.0"
501 - nanoutil:
502 - dependency: "direct main"
503 - description:
504 - path: "."
505 - ref: c01a9c552917008d8fbc6b540db657031625b04f
506 - resolved-ref: c01a9c552917008d8fbc6b540db657031625b04f
507 - url: "https://github.com/perishllc/nanoutil.git"
508 - source: git
509 - version: "1.0.3"
510 - nested:
511 - dependency: transitive
512 - description:
513 - name: nested
514 - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
515 - url: "https://pub.dev"
516 - source: hosted
517 - version: "1.0.0"
518 - on_chain:
519 - dependency: transitive
520 - description:
521 - path: "."
522 - ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
523 - resolved-ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
524 - url: "https://github.com/cake-tech/on_chain.git"
525 - source: git
526 - version: "3.7.0"
527 - package_config:
528 - dependency: transitive
529 - description:
530 - name: package_config
531 - sha256: f096c55ebb7deb7e384101542bfba8c52696c1b56fca2eb62827989ef2353bbc
532 - url: "https://pub.dev"
533 - source: hosted
534 - version: "2.2.0"
535 - path:
536 - dependency: transitive
537 - description:
538 - name: path
539 - sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
540 - url: "https://pub.dev"
541 - source: hosted
542 - version: "1.9.1"
543 - path_provider:
544 - dependency: transitive
545 - description:
546 - name: path_provider
547 - sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
548 - url: "https://pub.dev"
549 - source: hosted
550 - version: "2.1.5"
551 - path_provider_android:
552 - dependency: transitive
553 - description:
554 - name: path_provider_android
555 - sha256: d0d310befe2c8ab9e7f393288ccbb11b60c019c6b5afc21973eeee4dda2b35e9
556 - url: "https://pub.dev"
557 - source: hosted
558 - version: "2.2.17"
559 - path_provider_foundation:
560 - dependency: transitive
561 - description:
562 - name: path_provider_foundation
563 - sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
564 - url: "https://pub.dev"
565 - source: hosted
566 - version: "2.4.1"
567 - path_provider_linux:
568 - dependency: transitive
569 - description:
570 - name: path_provider_linux
571 - sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
572 - url: "https://pub.dev"
573 - source: hosted
574 - version: "2.2.1"
575 - path_provider_platform_interface:
576 - dependency: transitive
577 - description:
578 - name: path_provider_platform_interface
579 - sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
580 - url: "https://pub.dev"
581 - source: hosted
582 - version: "2.1.2"
583 - path_provider_windows:
584 - dependency: transitive
585 - description:
586 - name: path_provider_windows
587 - sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
588 - url: "https://pub.dev"
589 - source: hosted
590 - version: "2.3.0"
591 - pinenacl:
592 - dependency: transitive
593 - description:
594 - name: pinenacl
595 - sha256: "57e907beaacbc3c024a098910b6240758e899674de07d6949a67b52fd984cbdf"
596 - url: "https://pub.dev"
597 - source: hosted
598 - version: "0.6.0"
599 - platform:
600 - dependency: transitive
601 - description:
602 - name: platform
603 - sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
604 - url: "https://pub.dev"
605 - source: hosted
606 - version: "3.1.6"
607 - plugin_platform_interface:
608 - dependency: transitive
609 - description:
610 - name: plugin_platform_interface
611 - sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
612 - url: "https://pub.dev"
613 - source: hosted
614 - version: "2.1.8"
615 - pointycastle:
616 - dependency: transitive
617 - description:
618 - name: pointycastle
619 - sha256: "4be0097fcf3fd3e8449e53730c631200ebc7b88016acecab2b0da2f0149222fe"
620 - url: "https://pub.dev"
621 - source: hosted
622 - version: "3.9.1"
623 - pool:
624 - dependency: transitive
625 - description:
626 - name: pool
627 - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
628 - url: "https://pub.dev"
629 - source: hosted
630 - version: "1.5.1"
631 - provider:
632 - dependency: transitive
633 - description:
634 - name: provider
635 - sha256: "4abbd070a04e9ddc287673bf5a030c7ca8b685ff70218720abab8b092f53dd84"
636 - url: "https://pub.dev"
637 - source: hosted
638 - version: "6.1.5"
639 - pub_semver:
640 - dependency: transitive
641 - description:
642 - name: pub_semver
643 - sha256: "5bfcf68ca79ef689f8990d1160781b4bad40a3bd5e5218ad4076ddb7f4081585"
644 - url: "https://pub.dev"
645 - source: hosted
646 - version: "2.2.0"
647 - pubspec_parse:
648 - dependency: transitive
649 - description:
650 - name: pubspec_parse
651 - sha256: "0560ba233314abbed0a48a2956f7f022cce7c3e1e73df540277da7544cad4082"
652 - url: "https://pub.dev"
653 - source: hosted
654 - version: "1.5.0"
655 - rational:
656 - dependency: transitive
657 - description:
658 - name: rational
659 - sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336
660 - url: "https://pub.dev"
661 - source: hosted
662 - version: "2.2.3"
663 - shared_preferences:
664 - dependency: "direct main"
665 - description:
666 - name: shared_preferences
667 - sha256: "6e8bf70b7fef813df4e9a36f658ac46d107db4b4cfe1048b477d4e453a8159f5"
668 - url: "https://pub.dev"
669 - source: hosted
670 - version: "2.5.3"
671 - shared_preferences_android:
672 - dependency: transitive
673 - description:
674 - name: shared_preferences_android
675 - sha256: "20cbd561f743a342c76c151d6ddb93a9ce6005751e7aa458baad3858bfbfb6ac"
676 - url: "https://pub.dev"
677 - source: hosted
678 - version: "2.4.10"
679 - shared_preferences_foundation:
680 - dependency: transitive
681 - description:
682 - name: shared_preferences_foundation
683 - sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
684 - url: "https://pub.dev"
685 - source: hosted
686 - version: "2.5.4"
687 - shared_preferences_linux:
688 - dependency: transitive
689 - description:
690 - name: shared_preferences_linux
691 - sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
692 - url: "https://pub.dev"
693 - source: hosted
694 - version: "2.4.1"
695 - shared_preferences_platform_interface:
696 - dependency: transitive
697 - description:
698 - name: shared_preferences_platform_interface
699 - sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
700 - url: "https://pub.dev"
701 - source: hosted
702 - version: "2.4.1"
703 - shared_preferences_web:
704 - dependency: transitive
705 - description:
706 - name: shared_preferences_web
707 - sha256: c49bd060261c9a3f0ff445892695d6212ff603ef3115edbb448509d407600019
708 - url: "https://pub.dev"
709 - source: hosted
710 - version: "2.4.3"
711 - shared_preferences_windows:
712 - dependency: transitive
713 - description:
714 - name: shared_preferences_windows
715 - sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
716 - url: "https://pub.dev"
717 - source: hosted
718 - version: "2.4.1"
719 - shelf:
720 - dependency: transitive
721 - description:
722 - name: shelf
723 - sha256: e7dd780a7ffb623c57850b33f43309312fc863fb6aa3d276a754bb299839ef12
724 - url: "https://pub.dev"
725 - source: hosted
726 - version: "1.4.2"
727 - shelf_web_socket:
728 - dependency: transitive
729 - description:
730 - name: shelf_web_socket
731 - sha256: "3632775c8e90d6c9712f883e633716432a27758216dfb61bd86a8321c0580925"
732 - url: "https://pub.dev"
733 - source: hosted
734 - version: "3.0.0"
735 - sky_engine:
736 - dependency: transitive
737 - description: flutter
738 - source: sdk
739 - version: "0.0.0"
740 - socks5_proxy:
741 - dependency: transitive
742 - description:
743 - path: "."
744 - ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
745 - resolved-ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
746 - url: "https://github.com/LacticWhale/socks_dart"
747 - source: git
748 - version: "2.1.0"
749 - socks_socket:
750 - dependency: transitive
751 - description:
752 - path: "."
753 - ref: e6232c53c1595469931ababa878759a067c02e94
754 - resolved-ref: e6232c53c1595469931ababa878759a067c02e94
755 - url: "https://github.com/sneurlax/socks_socket"
756 - source: git
757 - version: "1.1.1"
758 - source_gen:
759 - dependency: transitive
760 - description:
761 - name: source_gen
762 - sha256: ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02
763 - url: "https://pub.dev"
764 - source: hosted
765 - version: "4.2.3"
766 - source_span:
767 - dependency: transitive
768 - description:
769 - name: source_span
770 - sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
771 - url: "https://pub.dev"
772 - source: hosted
773 - version: "1.10.1"
774 - sqflite:
775 - dependency: transitive
776 - description:
777 - name: sqflite
778 - sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb"
779 - url: "https://pub.dev"
780 - source: hosted
781 - version: "2.4.1"
782 - sqflite_android:
783 - dependency: transitive
784 - description:
785 - name: sqflite_android
786 - sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3"
787 - url: "https://pub.dev"
788 - source: hosted
789 - version: "2.4.0"
790 - sqflite_common:
791 - dependency: transitive
792 - description:
793 - name: sqflite_common
794 - sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709"
795 - url: "https://pub.dev"
796 - source: hosted
797 - version: "2.5.4+6"
798 - sqflite_common_ffi:
799 - dependency: transitive
800 - description:
801 - name: sqflite_common_ffi
802 - sha256: "883dd810b2b49e6e8c3b980df1829ef550a94e3f87deab5d864917d27ca6bf36"
803 - url: "https://pub.dev"
804 - source: hosted
805 - version: "2.3.4+4"
806 - sqflite_darwin:
807 - dependency: transitive
808 - description:
809 - name: sqflite_darwin
810 - sha256: "22adfd9a2c7d634041e96d6241e6e1c8138ca6817018afc5d443fef91dcefa9c"
811 - url: "https://pub.dev"
812 - source: hosted
813 - version: "2.4.1+1"
814 - sqflite_platform_interface:
815 - dependency: transitive
816 - description:
817 - name: sqflite_platform_interface
818 - sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920"
819 - url: "https://pub.dev"
820 - source: hosted
821 - version: "2.4.0"
822 - sqlite3:
823 - dependency: transitive
824 - description:
825 - name: sqlite3
826 - sha256: f393d92c71bdcc118d6203d07c991b9be0f84b1a6f89dd4f7eed348131329924
827 - url: "https://pub.dev"
828 - source: hosted
829 - version: "2.9.0"
830 - sqlite3_flutter_libs:
831 - dependency: transitive
832 - description:
833 - name: sqlite3_flutter_libs
834 - sha256: "69c80d812ef2500202ebd22002cbfc1b6565e9ff56b2f971e757fac5d42294df"
835 - url: "https://pub.dev"
836 - source: hosted
837 - version: "0.5.40"
838 - stack_trace:
839 - dependency: transitive
840 - description:
841 - name: stack_trace
842 - sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
843 - url: "https://pub.dev"
844 - source: hosted
845 - version: "1.12.1"
846 - stream_channel:
847 - dependency: transitive
848 - description:
849 - name: stream_channel
850 - sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
851 - url: "https://pub.dev"
852 - source: hosted
853 - version: "2.1.4"
854 - stream_transform:
855 - dependency: transitive
856 - description:
857 - name: stream_transform
858 - sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
859 - url: "https://pub.dev"
860 - source: hosted
861 - version: "2.1.1"
862 - string_scanner:
863 - dependency: transitive
864 - description:
865 - name: string_scanner
866 - sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
867 - url: "https://pub.dev"
868 - source: hosted
869 - version: "1.4.1"
870 - synchronized:
871 - dependency: transitive
872 - description:
873 - name: synchronized
874 - sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225"
875 - url: "https://pub.dev"
876 - source: hosted
877 - version: "3.3.0+3"
878 - term_glyph:
879 - dependency: transitive
880 - description:
881 - name: term_glyph
882 - sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
883 - url: "https://pub.dev"
884 - source: hosted
885 - version: "1.2.2"
886 - test_api:
887 - dependency: transitive
888 - description:
889 - name: test_api
890 - sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a"
891 - url: "https://pub.dev"
892 - source: hosted
893 - version: "0.7.10"
894 - torch_dart:
895 - dependency: transitive
896 - description:
897 - path: "../scripts/torch_dart"
898 - relative: true
899 - source: path
900 - version: "0.0.1"
901 - tuple:
902 - dependency: transitive
903 - description:
904 - name: tuple
905 - sha256: a97ce2013f240b2f3807bcbaf218765b6f301c3eff91092bcfa23a039e7dd151
906 - url: "https://pub.dev"
907 - source: hosted
908 - version: "2.0.2"
909 - typed_data:
910 - dependency: transitive
911 - description:
912 - name: typed_data
913 - sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
914 - url: "https://pub.dev"
915 - source: hosted
916 - version: "1.4.0"
917 - unorm_dart:
918 - dependency: transitive
919 - description:
920 - name: unorm_dart
921 - sha256: "23d8bf65605401a6a32cff99435fed66ef3dab3ddcad3454059165df46496a3b"
922 - url: "https://pub.dev"
923 - source: hosted
924 - version: "0.3.0"
925 - vector_math:
926 - dependency: transitive
927 - description:
928 - name: vector_math
929 - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
930 - url: "https://pub.dev"
931 - source: hosted
932 - version: "2.2.0"
933 - vm_service:
934 - dependency: transitive
935 - description:
936 - name: vm_service
937 - sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
938 - url: "https://pub.dev"
939 - source: hosted
940 - version: "15.0.0"
941 - watcher:
942 - dependency: "direct overridden"
943 - description:
944 - name: watcher
945 - sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104"
946 - url: "https://pub.dev"
947 - source: hosted
948 - version: "1.1.1"
949 - web:
950 - dependency: transitive
951 - description:
952 - name: web
953 - sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
954 - url: "https://pub.dev"
955 - source: hosted
956 - version: "1.1.1"
957 - web_socket:
958 - dependency: transitive
959 - description:
960 - name: web_socket
961 - sha256: "34d64019aa8e36bf9842ac014bb5d2f5586ca73df5e4d9bf5c936975cae6982c"
962 - url: "https://pub.dev"
963 - source: hosted
964 - version: "1.0.1"
965 - web_socket_channel:
966 - dependency: transitive
967 - description:
968 - name: web_socket_channel
969 - sha256: d645757fb0f4773d602444000a8131ff5d48c9e47adfe9772652dd1a4f2d45c8
970 - url: "https://pub.dev"
971 - source: hosted
972 - version: "3.0.3"
973 - xdg_directories:
974 - dependency: transitive
975 - description:
976 - name: xdg_directories
977 - sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
978 - url: "https://pub.dev"
979 - source: hosted
980 - version: "1.1.0"
981 - yaml:
982 - dependency: transitive
983 - description:
984 - name: yaml
985 - sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
986 - url: "https://pub.dev"
987 - source: hosted
988 - version: "3.1.3"
989 -sdks:
990 - dart: ">=3.10.0 <4.0.0"
991 - flutter: ">=3.27.0"
cw_nano/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_shared_external/pubspec.lock deleted
-189
@@ -1,189 +0,0 @@
1 -# Generated by pub
2 -# See https://dart.dev/tools/pub/glossary#lockfile
3 -packages:
4 - async:
5 - dependency: transitive
6 - description:
7 - name: async
8 - sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
9 - url: "https://pub.dev"
10 - source: hosted
11 - version: "2.11.0"
12 - boolean_selector:
13 - dependency: transitive
14 - description:
15 - name: boolean_selector
16 - sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
17 - url: "https://pub.dev"
18 - source: hosted
19 - version: "2.1.1"
20 - characters:
21 - dependency: transitive
22 - description:
23 - name: characters
24 - sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
25 - url: "https://pub.dev"
26 - source: hosted
27 - version: "1.3.0"
28 - clock:
29 - dependency: transitive
30 - description:
31 - name: clock
32 - sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
33 - url: "https://pub.dev"
34 - source: hosted
35 - version: "1.1.1"
36 - collection:
37 - dependency: transitive
38 - description:
39 - name: collection
40 - sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
41 - url: "https://pub.dev"
42 - source: hosted
43 - version: "1.18.0"
44 - fake_async:
45 - dependency: transitive
46 - description:
47 - name: fake_async
48 - sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
49 - url: "https://pub.dev"
50 - source: hosted
51 - version: "1.3.1"
52 - flutter:
53 - dependency: "direct main"
54 - description: flutter
55 - source: sdk
56 - version: "0.0.0"
57 - flutter_test:
58 - dependency: "direct dev"
59 - description: flutter
60 - source: sdk
61 - version: "0.0.0"
62 - leak_tracker:
63 - dependency: transitive
64 - description:
65 - name: leak_tracker
66 - sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a"
67 - url: "https://pub.dev"
68 - source: hosted
69 - version: "10.0.4"
70 - leak_tracker_flutter_testing:
71 - dependency: transitive
72 - description:
73 - name: leak_tracker_flutter_testing
74 - sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8"
75 - url: "https://pub.dev"
76 - source: hosted
77 - version: "3.0.3"
78 - leak_tracker_testing:
79 - dependency: transitive
80 - description:
81 - name: leak_tracker_testing
82 - sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
83 - url: "https://pub.dev"
84 - source: hosted
85 - version: "3.0.1"
86 - matcher:
87 - dependency: transitive
88 - description:
89 - name: matcher
90 - sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb
91 - url: "https://pub.dev"
92 - source: hosted
93 - version: "0.12.16+1"
94 - material_color_utilities:
95 - dependency: transitive
96 - description:
97 - name: material_color_utilities
98 - sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
99 - url: "https://pub.dev"
100 - source: hosted
101 - version: "0.8.0"
102 - meta:
103 - dependency: transitive
104 - description:
105 - name: meta
106 - sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
107 - url: "https://pub.dev"
108 - source: hosted
109 - version: "1.12.0"
110 - path:
111 - dependency: transitive
112 - description:
113 - name: path
114 - sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af"
115 - url: "https://pub.dev"
116 - source: hosted
117 - version: "1.9.0"
118 - sky_engine:
119 - dependency: transitive
120 - description: flutter
121 - source: sdk
122 - version: "0.0.99"
123 - source_span:
124 - dependency: transitive
125 - description:
126 - name: source_span
127 - sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
128 - url: "https://pub.dev"
129 - source: hosted
130 - version: "1.10.0"
131 - stack_trace:
132 - dependency: transitive
133 - description:
134 - name: stack_trace
135 - sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
136 - url: "https://pub.dev"
137 - source: hosted
138 - version: "1.11.1"
139 - stream_channel:
140 - dependency: transitive
141 - description:
142 - name: stream_channel
143 - sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
144 - url: "https://pub.dev"
145 - source: hosted
146 - version: "2.1.2"
147 - string_scanner:
148 - dependency: transitive
149 - description:
150 - name: string_scanner
151 - sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
152 - url: "https://pub.dev"
153 - source: hosted
154 - version: "1.2.0"
155 - term_glyph:
156 - dependency: transitive
157 - description:
158 - name: term_glyph
159 - sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
160 - url: "https://pub.dev"
161 - source: hosted
162 - version: "1.2.1"
163 - test_api:
164 - dependency: transitive
165 - description:
166 - name: test_api
167 - sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f"
168 - url: "https://pub.dev"
169 - source: hosted
170 - version: "0.7.0"
171 - vector_math:
172 - dependency: transitive
173 - description:
174 - name: vector_math
175 - sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
176 - url: "https://pub.dev"
177 - source: hosted
178 - version: "2.1.4"
179 - vm_service:
180 - dependency: transitive
181 - description:
182 - name: vm_service
183 - sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec"
184 - url: "https://pub.dev"
185 - source: hosted
186 - version: "14.2.1"
187 -sdks:
188 - dart: ">=3.3.0 <4.0.0"
189 - flutter: ">=3.18.0-18.0.pre.54"
cw_shared_external/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_solana/.gitignore
-2
@@ -22,8 +22,6 @@ migrate_working_dir/
22 #.vscode/
23
24 # Flutter/Dart/Pub related
25 -# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26 -/pubspec.lock
25 **/doc/api/
26 .dart_tool/
27 .packages
cw_solana/build.yaml new
+5
@@ -0,0 +1,5 @@
1 +targets:
2 + $default:
3 + sources:
4 + exclude:
5 + - "**/.secrets.g.dart"
cw_solana/pubspec.yaml
+1 -1
@@ -27,7 +27,7 @@ dependencies:
27 blockchain_utils:
28 git:
29 url: https://github.com/cake-tech/blockchain_utils
30 - ref: cake-update-v2
30 + ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
31
32 dev_dependencies:
33 flutter_test:
cw_solana/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_tron/.gitignore
-2
@@ -22,8 +22,6 @@ migrate_working_dir/
22 #.vscode/
23
24 # Flutter/Dart/Pub related
25 -# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26 -/pubspec.lock
25 **/doc/api/
26 .dart_tool/
27 .packages
cw_tron/build.yaml new
+5
@@ -0,0 +1,5 @@
1 +targets:
2 + $default:
3 + sources:
4 + exclude:
5 + - "**/.secrets.g.dart"
cw_tron/pubspec.yaml
+1 -1
@@ -22,7 +22,7 @@ dependencies:
22 blockchain_utils:
23 git:
24 url: https://github.com/cake-tech/blockchain_utils
25 - ref: cake-update-v2
25 + ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
26 mobx: ^2.3.0+1
27 bip39: ^1.0.6
28 hive: ^2.2.3
cw_tron/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_wownero/pubspec.lock deleted
-890
@@ -1,890 +0,0 @@
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: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6
25 - url: "https://pub.dev"
26 - source: hosted
27 - version: "2.6.0"
28 - asn1lib:
29 - dependency: transitive
30 - description:
31 - name: asn1lib
32 - sha256: "4bae5ae63e6d6dd17c4aac8086f3dec26c0236f6a0f03416c6c19d830c367cf5"
33 - url: "https://pub.dev"
34 - source: hosted
35 - version: "1.5.8"
36 - async:
37 - dependency: transitive
38 - description:
39 - name: async
40 - sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
41 - url: "https://pub.dev"
42 - source: hosted
43 - version: "2.13.0"
44 - bech32:
45 - dependency: transitive
46 - description:
47 - path: "."
48 - ref: HEAD
49 - resolved-ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
50 - url: "https://github.com/cake-tech/bech32.git"
51 - source: git
52 - version: "0.2.2"
53 - blockchain_utils:
54 - dependency: transitive
55 - description:
56 - path: "."
57 - ref: cake-update-v2
58 - resolved-ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
59 - url: "https://github.com/cake-tech/blockchain_utils"
60 - source: git
61 - version: "3.3.0"
62 - boolean_selector:
63 - dependency: transitive
64 - description:
65 - name: boolean_selector
66 - sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
67 - url: "https://pub.dev"
68 - source: hosted
69 - version: "2.1.2"
70 - build:
71 - dependency: transitive
72 - description:
73 - name: build
74 - sha256: a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10
75 - url: "https://pub.dev"
76 - source: hosted
77 - version: "4.0.6"
78 - build_config:
79 - dependency: transitive
80 - description:
81 - name: build_config
82 - sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71"
83 - url: "https://pub.dev"
84 - source: hosted
85 - version: "1.3.0"
86 - build_daemon:
87 - dependency: transitive
88 - description:
89 - name: build_daemon
90 - sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9"
91 - url: "https://pub.dev"
92 - source: hosted
93 - version: "4.0.2"
94 - build_runner:
95 - dependency: "direct dev"
96 - description:
97 - name: build_runner
98 - sha256: "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6"
99 - url: "https://pub.dev"
100 - source: hosted
101 - version: "2.15.0"
102 - built_collection:
103 - dependency: transitive
104 - description:
105 - name: built_collection
106 - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
107 - url: "https://pub.dev"
108 - source: hosted
109 - version: "5.1.1"
110 - built_value:
111 - dependency: transitive
112 - description:
113 - name: built_value
114 - sha256: "34e4067d30ce212937df995f03b69992eea683539ceeac7f679a1f1eba055b56"
115 - url: "https://pub.dev"
116 - source: hosted
117 - version: "8.12.6"
118 - cake_backup:
119 - dependency: transitive
120 - description:
121 - path: "."
122 - ref: main
123 - resolved-ref: "3aba867dcab6737f6707782f5db15d71f303db38"
124 - url: "https://github.com/cake-tech/cake_backup.git"
125 - source: git
126 - version: "1.0.0+1"
127 - characters:
128 - dependency: transitive
129 - description:
130 - name: characters
131 - sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
132 - url: "https://pub.dev"
133 - source: hosted
134 - version: "1.4.1"
135 - checked_yaml:
136 - dependency: transitive
137 - description:
138 - name: checked_yaml
139 - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
140 - url: "https://pub.dev"
141 - source: hosted
142 - version: "2.0.3"
143 - clock:
144 - dependency: transitive
145 - description:
146 - name: clock
147 - sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
148 - url: "https://pub.dev"
149 - source: hosted
150 - version: "1.1.2"
151 - collection:
152 - dependency: transitive
153 - description:
154 - name: collection
155 - sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
156 - url: "https://pub.dev"
157 - source: hosted
158 - version: "1.19.1"
159 - convert:
160 - dependency: transitive
161 - description:
162 - name: convert
163 - sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
164 - url: "https://pub.dev"
165 - source: hosted
166 - version: "3.1.2"
167 - crypto:
168 - dependency: transitive
169 - description:
170 - name: crypto
171 - sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
172 - url: "https://pub.dev"
173 - source: hosted
174 - version: "3.0.6"
175 - cryptography:
176 - dependency: transitive
177 - description:
178 - name: cryptography
179 - sha256: d146b76d33d94548cf035233fbc2f4338c1242fa119013bead807d033fc4ae05
180 - url: "https://pub.dev"
181 - source: hosted
182 - version: "2.7.0"
183 - cupertino_icons:
184 - dependency: transitive
185 - description:
186 - name: cupertino_icons
187 - sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
188 - url: "https://pub.dev"
189 - source: hosted
190 - version: "1.0.8"
191 - cw_core:
192 - dependency: "direct main"
193 - description:
194 - path: "../cw_core"
195 - relative: true
196 - source: path
197 - version: "0.0.1"
198 - dart_style:
199 - dependency: transitive
200 - description:
201 - name: dart_style
202 - sha256: "29f7ecc274a86d32920b1d9cfc7502fa87220da41ec60b55f329559d5732e2b2"
203 - url: "https://pub.dev"
204 - source: hosted
205 - version: "3.1.7"
206 - decimal:
207 - dependency: transitive
208 - description:
209 - name: decimal
210 - sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21"
211 - url: "https://pub.dev"
212 - source: hosted
213 - version: "2.3.3"
214 - encrypt:
215 - dependency: "direct main"
216 - description:
217 - name: encrypt
218 - sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2"
219 - url: "https://pub.dev"
220 - source: hosted
221 - version: "5.0.3"
222 - fake_async:
223 - dependency: transitive
224 - description:
225 - name: fake_async
226 - sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
227 - url: "https://pub.dev"
228 - source: hosted
229 - version: "1.3.3"
230 - ffi:
231 - dependency: "direct main"
232 - description:
233 - name: ffi
234 - sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
235 - url: "https://pub.dev"
236 - source: hosted
237 - version: "2.1.3"
238 - file:
239 - dependency: transitive
240 - description:
241 - name: file
242 - sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
243 - url: "https://pub.dev"
244 - source: hosted
245 - version: "7.0.1"
246 - fixnum:
247 - dependency: transitive
248 - description:
249 - name: fixnum
250 - sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
251 - url: "https://pub.dev"
252 - source: hosted
253 - version: "1.1.1"
254 - flutter:
255 - dependency: "direct main"
256 - description: flutter
257 - source: sdk
258 - version: "0.0.0"
259 - flutter_mobx:
260 - dependency: "direct main"
261 - description:
262 - name: flutter_mobx
263 - sha256: ba5e93467866a2991259dc51cffd41ef45f695c667c2b8e7b087bf24118b50fe
264 - url: "https://pub.dev"
265 - source: hosted
266 - version: "2.3.0"
267 - flutter_test:
268 - dependency: "direct dev"
269 - description: flutter
270 - source: sdk
271 - version: "0.0.0"
272 - glob:
273 - dependency: transitive
274 - description:
275 - name: glob
276 - sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
277 - url: "https://pub.dev"
278 - source: hosted
279 - version: "2.1.3"
280 - graphs:
281 - dependency: transitive
282 - description:
283 - name: graphs
284 - sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
285 - url: "https://pub.dev"
286 - source: hosted
287 - version: "2.3.2"
288 - hashlib:
289 - dependency: transitive
290 - description:
291 - name: hashlib
292 - sha256: e13e8237d93fb275cd1c55fc339bb90638994d1a4f140c7ee270173b51f3d169
293 - url: "https://pub.dev"
294 - source: hosted
295 - version: "1.21.1"
296 - hashlib_codecs:
297 - dependency: transitive
298 - description:
299 - name: hashlib_codecs
300 - sha256: "8cea9ccafcfeaa7324d2ae52c61c69f7ff71f4237507a018caab31b9e416e3b1"
301 - url: "https://pub.dev"
302 - source: hosted
303 - version: "2.6.0"
304 - hive:
305 - dependency: "direct dev"
306 - description:
307 - name: hive
308 - sha256: "5184b6ea455689754578267c31c3b0b329cccf20a5f2bfdab6941c29c3d3c09a"
309 - url: "https://pub.dev"
310 - source: hosted
311 - version: "2.0.1"
312 - http:
313 - dependency: "direct main"
314 - description:
315 - name: http
316 - sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
317 - url: "https://pub.dev"
318 - source: hosted
319 - version: "1.3.0"
320 - http_multi_server:
321 - dependency: transitive
322 - description:
323 - name: http_multi_server
324 - sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
325 - url: "https://pub.dev"
326 - source: hosted
327 - version: "3.2.2"
328 - http_parser:
329 - dependency: transitive
330 - description:
331 - name: http_parser
332 - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
333 - url: "https://pub.dev"
334 - source: hosted
335 - version: "4.0.2"
336 - intl:
337 - dependency: "direct main"
338 - description:
339 - name: intl
340 - sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
341 - url: "https://pub.dev"
342 - source: hosted
343 - version: "0.19.0"
344 - io:
345 - dependency: transitive
346 - description:
347 - name: io
348 - sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
349 - url: "https://pub.dev"
350 - source: hosted
351 - version: "1.0.5"
352 - js:
353 - dependency: transitive
354 - description:
355 - name: js
356 - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
357 - url: "https://pub.dev"
358 - source: hosted
359 - version: "0.6.7"
360 - json_annotation:
361 - dependency: transitive
362 - description:
363 - name: json_annotation
364 - sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
365 - url: "https://pub.dev"
366 - source: hosted
367 - version: "4.9.0"
368 - leak_tracker:
369 - dependency: transitive
370 - description:
371 - name: leak_tracker
372 - sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
373 - url: "https://pub.dev"
374 - source: hosted
375 - version: "11.0.2"
376 - leak_tracker_flutter_testing:
377 - dependency: transitive
378 - description:
379 - name: leak_tracker_flutter_testing
380 - sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
381 - url: "https://pub.dev"
382 - source: hosted
383 - version: "3.0.10"
384 - leak_tracker_testing:
385 - dependency: transitive
386 - description:
387 - name: leak_tracker_testing
388 - sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
389 - url: "https://pub.dev"
390 - source: hosted
391 - version: "3.0.2"
392 - logging:
393 - dependency: transitive
394 - description:
395 - name: logging
396 - sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
397 - url: "https://pub.dev"
398 - source: hosted
399 - version: "1.3.0"
400 - matcher:
401 - dependency: transitive
402 - description:
403 - name: matcher
404 - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861
405 - url: "https://pub.dev"
406 - source: hosted
407 - version: "0.12.19"
408 - material_color_utilities:
409 - dependency: transitive
410 - description:
411 - name: material_color_utilities
412 - sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
413 - url: "https://pub.dev"
414 - source: hosted
415 - version: "0.13.0"
416 - meta:
417 - dependency: transitive
418 - description:
419 - name: meta
420 - sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
421 - url: "https://pub.dev"
422 - source: hosted
423 - version: "1.17.0"
424 - mime:
425 - dependency: transitive
426 - description:
427 - name: mime
428 - sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
429 - url: "https://pub.dev"
430 - source: hosted
431 - version: "2.0.0"
432 - mobx:
433 - dependency: "direct main"
434 - description:
435 - name: mobx
436 - sha256: "25ea9a3ee69243d578fb6288721d8eeb18550d0391c32f896d377d994154bff2"
437 - url: "https://pub.dev"
438 - source: hosted
439 - version: "2.6.0"
440 - mobx_codegen:
441 - dependency: "direct dev"
442 - description:
443 - name: mobx_codegen
444 - sha256: "6529bcae074838004b58ad01fbe4966be182a176aacfb723686985986ebac19f"
445 - url: "https://pub.dev"
446 - source: hosted
447 - version: "2.7.7"
448 - monero:
449 - dependency: "direct main"
450 - description:
451 - path: "impls/monero.dart"
452 - ref: "3bfb3856a838f2bf6b729501837bb0295dedf25d"
453 - resolved-ref: "3bfb3856a838f2bf6b729501837bb0295dedf25d"
454 - url: "https://github.com/mrcyjanek/monero_c.git"
455 - source: git
456 - version: "0.0.0"
457 - mutex:
458 - dependency: "direct main"
459 - description:
460 - name: mutex
461 - sha256: "8827da25de792088eb33e572115a5eb0d61d61a3c01acbc8bcbe76ed78f1a1f2"
462 - url: "https://pub.dev"
463 - source: hosted
464 - version: "3.1.0"
465 - nested:
466 - dependency: transitive
467 - description:
468 - name: nested
469 - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
470 - url: "https://pub.dev"
471 - source: hosted
472 - version: "1.0.0"
473 - on_chain:
474 - dependency: transitive
475 - description:
476 - path: "."
477 - ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
478 - resolved-ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
479 - url: "https://github.com/cake-tech/on_chain.git"
480 - source: git
481 - version: "3.7.0"
482 - package_config:
483 - dependency: transitive
484 - description:
485 - name: package_config
486 - sha256: "92d4488434b520a62570293fbd33bb556c7d49230791c1b4bbd973baf6d2dc67"
487 - url: "https://pub.dev"
488 - source: hosted
489 - version: "2.1.1"
490 - path:
491 - dependency: transitive
492 - description:
493 - name: path
494 - sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
495 - url: "https://pub.dev"
496 - source: hosted
497 - version: "1.9.1"
498 - path_provider:
499 - dependency: "direct main"
500 - description:
501 - name: path_provider
502 - sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
503 - url: "https://pub.dev"
504 - source: hosted
505 - version: "2.1.5"
506 - path_provider_android:
507 - dependency: transitive
508 - description:
509 - name: path_provider_android
510 - sha256: "4adf4fd5423ec60a29506c76581bc05854c55e3a0b72d35bb28d661c9686edf2"
511 - url: "https://pub.dev"
512 - source: hosted
513 - version: "2.2.15"
514 - path_provider_foundation:
515 - dependency: transitive
516 - description:
517 - name: path_provider_foundation
518 - sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
519 - url: "https://pub.dev"
520 - source: hosted
521 - version: "2.4.1"
522 - path_provider_linux:
523 - dependency: transitive
524 - description:
525 - name: path_provider_linux
526 - sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
527 - url: "https://pub.dev"
528 - source: hosted
529 - version: "2.2.1"
530 - path_provider_platform_interface:
531 - dependency: transitive
532 - description:
533 - name: path_provider_platform_interface
534 - sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
535 - url: "https://pub.dev"
536 - source: hosted
537 - version: "2.1.2"
538 - path_provider_windows:
539 - dependency: transitive
540 - description:
541 - name: path_provider_windows
542 - sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
543 - url: "https://pub.dev"
544 - source: hosted
545 - version: "2.3.0"
546 - platform:
547 - dependency: transitive
548 - description:
549 - name: platform
550 - sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
551 - url: "https://pub.dev"
552 - source: hosted
553 - version: "3.1.6"
554 - plugin_platform_interface:
555 - dependency: transitive
556 - description:
557 - name: plugin_platform_interface
558 - sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
559 - url: "https://pub.dev"
560 - source: hosted
561 - version: "2.1.8"
562 - pointycastle:
563 - dependency: transitive
564 - description:
565 - name: pointycastle
566 - sha256: "4be0097fcf3fd3e8449e53730c631200ebc7b88016acecab2b0da2f0149222fe"
567 - url: "https://pub.dev"
568 - source: hosted
569 - version: "3.9.1"
570 - polyseed:
571 - dependency: "direct main"
572 - description:
573 - name: polyseed
574 - sha256: ccc6ba0ed3976837e770a324a6295fbf3d7c0d05fc0fa1906e36479b07c2675b
575 - url: "https://pub.dev"
576 - source: hosted
577 - version: "0.0.7"
578 - pool:
579 - dependency: transitive
580 - description:
581 - name: pool
582 - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
583 - url: "https://pub.dev"
584 - source: hosted
585 - version: "1.5.1"
586 - provider:
587 - dependency: transitive
588 - description:
589 - name: provider
590 - sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c
591 - url: "https://pub.dev"
592 - source: hosted
593 - version: "6.1.2"
594 - pub_semver:
595 - dependency: transitive
596 - description:
597 - name: pub_semver
598 - sha256: "7b3cfbf654f3edd0c6298ecd5be782ce997ddf0e00531b9464b55245185bbbbd"
599 - url: "https://pub.dev"
600 - source: hosted
601 - version: "2.1.5"
602 - pubspec_parse:
603 - dependency: transitive
604 - description:
605 - name: pubspec_parse
606 - sha256: "81876843eb50dc2e1e5b151792c9a985c5ed2536914115ed04e9c8528f6647b0"
607 - url: "https://pub.dev"
608 - source: hosted
609 - version: "1.4.0"
610 - rational:
611 - dependency: transitive
612 - description:
613 - name: rational
614 - sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336
615 - url: "https://pub.dev"
616 - source: hosted
617 - version: "2.2.3"
618 - shelf:
619 - dependency: transitive
620 - description:
621 - name: shelf
622 - sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4
623 - url: "https://pub.dev"
624 - source: hosted
625 - version: "1.4.1"
626 - shelf_web_socket:
627 - dependency: transitive
628 - description:
629 - name: shelf_web_socket
630 - sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67
631 - url: "https://pub.dev"
632 - source: hosted
633 - version: "2.0.1"
634 - sky_engine:
635 - dependency: transitive
636 - description: flutter
637 - source: sdk
638 - version: "0.0.0"
639 - socks5_proxy:
640 - dependency: transitive
641 - description:
642 - path: "."
643 - ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
644 - resolved-ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
645 - url: "https://github.com/LacticWhale/socks_dart"
646 - source: git
647 - version: "2.1.0"
648 - socks_socket:
649 - dependency: transitive
650 - description:
651 - path: "."
652 - ref: e6232c53c1595469931ababa878759a067c02e94
653 - resolved-ref: e6232c53c1595469931ababa878759a067c02e94
654 - url: "https://github.com/sneurlax/socks_socket"
655 - source: git
656 - version: "1.1.1"
657 - source_gen:
658 - dependency: transitive
659 - description:
660 - name: source_gen
661 - sha256: ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02
662 - url: "https://pub.dev"
663 - source: hosted
664 - version: "4.2.3"
665 - source_span:
666 - dependency: transitive
667 - description:
668 - name: source_span
669 - sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
670 - url: "https://pub.dev"
671 - source: hosted
672 - version: "1.10.1"
673 - sqflite:
674 - dependency: transitive
675 - description:
676 - name: sqflite
677 - sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb"
678 - url: "https://pub.dev"
679 - source: hosted
680 - version: "2.4.1"
681 - sqflite_android:
682 - dependency: transitive
683 - description:
684 - name: sqflite_android
685 - sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3"
686 - url: "https://pub.dev"
687 - source: hosted
688 - version: "2.4.0"
689 - sqflite_common:
690 - dependency: transitive
691 - description:
692 - name: sqflite_common
693 - sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709"
694 - url: "https://pub.dev"
695 - source: hosted
696 - version: "2.5.4+6"
697 - sqflite_common_ffi:
698 - dependency: transitive
699 - description:
700 - name: sqflite_common_ffi
701 - sha256: "883dd810b2b49e6e8c3b980df1829ef550a94e3f87deab5d864917d27ca6bf36"
702 - url: "https://pub.dev"
703 - source: hosted
704 - version: "2.3.4+4"
705 - sqflite_darwin:
706 - dependency: transitive
707 - description:
708 - name: sqflite_darwin
709 - sha256: "22adfd9a2c7d634041e96d6241e6e1c8138ca6817018afc5d443fef91dcefa9c"
710 - url: "https://pub.dev"
711 - source: hosted
712 - version: "2.4.1+1"
713 - sqflite_platform_interface:
714 - dependency: transitive
715 - description:
716 - name: sqflite_platform_interface
717 - sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920"
718 - url: "https://pub.dev"
719 - source: hosted
720 - version: "2.4.0"
721 - sqlite3:
722 - dependency: transitive
723 - description:
724 - name: sqlite3
725 - sha256: f393d92c71bdcc118d6203d07c991b9be0f84b1a6f89dd4f7eed348131329924
726 - url: "https://pub.dev"
727 - source: hosted
728 - version: "2.9.0"
729 - sqlite3_flutter_libs:
730 - dependency: transitive
731 - description:
732 - name: sqlite3_flutter_libs
733 - sha256: "69c80d812ef2500202ebd22002cbfc1b6565e9ff56b2f971e757fac5d42294df"
734 - url: "https://pub.dev"
735 - source: hosted
736 - version: "0.5.40"
737 - stack_trace:
738 - dependency: transitive
739 - description:
740 - name: stack_trace
741 - sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
742 - url: "https://pub.dev"
743 - source: hosted
744 - version: "1.12.1"
745 - stream_channel:
746 - dependency: transitive
747 - description:
748 - name: stream_channel
749 - sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
750 - url: "https://pub.dev"
751 - source: hosted
752 - version: "2.1.4"
753 - stream_transform:
754 - dependency: transitive
755 - description:
756 - name: stream_transform
757 - sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
758 - url: "https://pub.dev"
759 - source: hosted
760 - version: "2.1.1"
761 - string_scanner:
762 - dependency: transitive
763 - description:
764 - name: string_scanner
765 - sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
766 - url: "https://pub.dev"
767 - source: hosted
768 - version: "1.4.1"
769 - synchronized:
770 - dependency: transitive
771 - description:
772 - name: synchronized
773 - sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225"
774 - url: "https://pub.dev"
775 - source: hosted
776 - version: "3.3.0+3"
777 - term_glyph:
778 - dependency: transitive
779 - description:
780 - name: term_glyph
781 - sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
782 - url: "https://pub.dev"
783 - source: hosted
784 - version: "1.2.2"
785 - test_api:
786 - dependency: transitive
787 - description:
788 - name: test_api
789 - sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a"
790 - url: "https://pub.dev"
791 - source: hosted
792 - version: "0.7.10"
793 - torch_dart:
794 - dependency: transitive
795 - description:
796 - path: "../scripts/torch_dart"
797 - relative: true
798 - source: path
799 - version: "0.0.1"
800 - tuple:
801 - dependency: transitive
802 - description:
803 - name: tuple
804 - sha256: a97ce2013f240b2f3807bcbaf218765b6f301c3eff91092bcfa23a039e7dd151
805 - url: "https://pub.dev"
806 - source: hosted
807 - version: "2.0.2"
808 - typed_data:
809 - dependency: transitive
810 - description:
811 - name: typed_data
812 - sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
813 - url: "https://pub.dev"
814 - source: hosted
815 - version: "1.4.0"
816 - unorm_dart:
817 - dependency: transitive
818 - description:
819 - name: unorm_dart
820 - sha256: "23d8bf65605401a6a32cff99435fed66ef3dab3ddcad3454059165df46496a3b"
821 - url: "https://pub.dev"
822 - source: hosted
823 - version: "0.3.0"
824 - vector_math:
825 - dependency: transitive
826 - description:
827 - name: vector_math
828 - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
829 - url: "https://pub.dev"
830 - source: hosted
831 - version: "2.2.0"
832 - vm_service:
833 - dependency: transitive
834 - description:
835 - name: vm_service
836 - sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
837 - url: "https://pub.dev"
838 - source: hosted
839 - version: "15.0.0"
840 - watcher:
841 - dependency: "direct overridden"
842 - description:
843 - name: watcher
844 - sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104"
845 - url: "https://pub.dev"
846 - source: hosted
847 - version: "1.1.1"
848 - web:
849 - dependency: transitive
850 - description:
851 - name: web
852 - sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
853 - url: "https://pub.dev"
854 - source: hosted
855 - version: "1.1.1"
856 - web_socket:
857 - dependency: transitive
858 - description:
859 - name: web_socket
860 - sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83"
861 - url: "https://pub.dev"
862 - source: hosted
863 - version: "0.1.6"
864 - web_socket_channel:
865 - dependency: transitive
866 - description:
867 - name: web_socket_channel
868 - sha256: "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5"
869 - url: "https://pub.dev"
870 - source: hosted
871 - version: "3.0.2"
872 - xdg_directories:
873 - dependency: transitive
874 - description:
875 - name: xdg_directories
876 - sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
877 - url: "https://pub.dev"
878 - source: hosted
879 - version: "1.1.0"
880 - yaml:
881 - dependency: transitive
882 - description:
883 - name: yaml
884 - sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
885 - url: "https://pub.dev"
886 - source: hosted
887 - version: "3.1.3"
888 -sdks:
889 - dart: ">=3.10.0 <4.0.0"
890 - flutter: ">=3.24.0"
cw_wownero/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_zano/pubspec.lock deleted
-887
@@ -1,887 +0,0 @@
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: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6
25 - url: "https://pub.dev"
26 - source: hosted
27 - version: "2.6.0"
28 - asn1lib:
29 - dependency: transitive
30 - description:
31 - name: asn1lib
32 - sha256: "4bae5ae63e6d6dd17c4aac8086f3dec26c0236f6a0f03416c6c19d830c367cf5"
33 - url: "https://pub.dev"
34 - source: hosted
35 - version: "1.5.8"
36 - async:
37 - dependency: transitive
38 - description:
39 - name: async
40 - sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
41 - url: "https://pub.dev"
42 - source: hosted
43 - version: "2.13.0"
44 - bech32:
45 - dependency: transitive
46 - description:
47 - path: "."
48 - ref: HEAD
49 - resolved-ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
50 - url: "https://github.com/cake-tech/bech32.git"
51 - source: git
52 - version: "0.2.2"
53 - blockchain_utils:
54 - dependency: transitive
55 - description:
56 - path: "."
57 - ref: cake-update-v2
58 - resolved-ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
59 - url: "https://github.com/cake-tech/blockchain_utils"
60 - source: git
61 - version: "3.3.0"
62 - boolean_selector:
63 - dependency: transitive
64 - description:
65 - name: boolean_selector
66 - sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
67 - url: "https://pub.dev"
68 - source: hosted
69 - version: "2.1.2"
70 - build:
71 - dependency: transitive
72 - description:
73 - name: build
74 - sha256: a156715e7cd728130c592f30552575908aae5b100005fbc1f0fb16b3c03a3d10
75 - url: "https://pub.dev"
76 - source: hosted
77 - version: "4.0.6"
78 - build_config:
79 - dependency: transitive
80 - description:
81 - name: build_config
82 - sha256: "4070d2a59f8eec34c97c86ceb44403834899075f66e8a9d59706f8e7834f6f71"
83 - url: "https://pub.dev"
84 - source: hosted
85 - version: "1.3.0"
86 - build_daemon:
87 - dependency: transitive
88 - description:
89 - name: build_daemon
90 - sha256: "79b2aef6ac2ed00046867ed354c88778c9c0f029df8a20fe10b5436826721ef9"
91 - url: "https://pub.dev"
92 - source: hosted
93 - version: "4.0.2"
94 - build_runner:
95 - dependency: "direct dev"
96 - description:
97 - name: build_runner
98 - sha256: "1523ce62448ebac2c15a8ba5fbad8acac169788658a7dd2a1c2d9c2a9318b9a6"
99 - url: "https://pub.dev"
100 - source: hosted
101 - version: "2.15.0"
102 - built_collection:
103 - dependency: transitive
104 - description:
105 - name: built_collection
106 - sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100"
107 - url: "https://pub.dev"
108 - source: hosted
109 - version: "5.1.1"
110 - built_value:
111 - dependency: transitive
112 - description:
113 - name: built_value
114 - sha256: "34e4067d30ce212937df995f03b69992eea683539ceeac7f679a1f1eba055b56"
115 - url: "https://pub.dev"
116 - source: hosted
117 - version: "8.12.6"
118 - cake_backup:
119 - dependency: transitive
120 - description:
121 - path: "."
122 - ref: main
123 - resolved-ref: "3aba867dcab6737f6707782f5db15d71f303db38"
124 - url: "https://github.com/cake-tech/cake_backup.git"
125 - source: git
126 - version: "1.0.0+1"
127 - characters:
128 - dependency: transitive
129 - description:
130 - name: characters
131 - sha256: faf38497bda5ead2a8c7615f4f7939df04333478bf32e4173fcb06d428b5716b
132 - url: "https://pub.dev"
133 - source: hosted
134 - version: "1.4.1"
135 - checked_yaml:
136 - dependency: transitive
137 - description:
138 - name: checked_yaml
139 - sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff
140 - url: "https://pub.dev"
141 - source: hosted
142 - version: "2.0.3"
143 - clock:
144 - dependency: transitive
145 - description:
146 - name: clock
147 - sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
148 - url: "https://pub.dev"
149 - source: hosted
150 - version: "1.1.2"
151 - collection:
152 - dependency: transitive
153 - description:
154 - name: collection
155 - sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
156 - url: "https://pub.dev"
157 - source: hosted
158 - version: "1.19.1"
159 - convert:
160 - dependency: transitive
161 - description:
162 - name: convert
163 - sha256: b30acd5944035672bc15c6b7a8b47d773e41e2f17de064350988c5d02adb1c68
164 - url: "https://pub.dev"
165 - source: hosted
166 - version: "3.1.2"
167 - crypto:
168 - dependency: transitive
169 - description:
170 - name: crypto
171 - sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
172 - url: "https://pub.dev"
173 - source: hosted
174 - version: "3.0.6"
175 - cryptography:
176 - dependency: transitive
177 - description:
178 - name: cryptography
179 - sha256: d146b76d33d94548cf035233fbc2f4338c1242fa119013bead807d033fc4ae05
180 - url: "https://pub.dev"
181 - source: hosted
182 - version: "2.7.0"
183 - cupertino_icons:
184 - dependency: transitive
185 - description:
186 - name: cupertino_icons
187 - sha256: ba631d1c7f7bef6b729a622b7b752645a2d076dba9976925b8f25725a30e1ee6
188 - url: "https://pub.dev"
189 - source: hosted
190 - version: "1.0.8"
191 - cw_core:
192 - dependency: "direct main"
193 - description:
194 - path: "../cw_core"
195 - relative: true
196 - source: path
197 - version: "0.0.1"
198 - dart_style:
199 - dependency: transitive
200 - description:
201 - name: dart_style
202 - sha256: "29f7ecc274a86d32920b1d9cfc7502fa87220da41ec60b55f329559d5732e2b2"
203 - url: "https://pub.dev"
204 - source: hosted
205 - version: "3.1.7"
206 - decimal:
207 - dependency: "direct main"
208 - description:
209 - name: decimal
210 - sha256: "24a261d5d5c87e86c7651c417a5dbdf8bcd7080dd592533910e8d0505a279f21"
211 - url: "https://pub.dev"
212 - source: hosted
213 - version: "2.3.3"
214 - encrypt:
215 - dependency: transitive
216 - description:
217 - name: encrypt
218 - sha256: "62d9aa4670cc2a8798bab89b39fc71b6dfbacf615de6cf5001fb39f7e4a996a2"
219 - url: "https://pub.dev"
220 - source: hosted
221 - version: "5.0.3"
222 - fake_async:
223 - dependency: transitive
224 - description:
225 - name: fake_async
226 - sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
227 - url: "https://pub.dev"
228 - source: hosted
229 - version: "1.3.3"
230 - ffi:
231 - dependency: "direct main"
232 - description:
233 - name: ffi
234 - sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
235 - url: "https://pub.dev"
236 - source: hosted
237 - version: "2.1.3"
238 - file:
239 - dependency: transitive
240 - description:
241 - name: file
242 - sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
243 - url: "https://pub.dev"
244 - source: hosted
245 - version: "7.0.1"
246 - fixnum:
247 - dependency: transitive
248 - description:
249 - name: fixnum
250 - sha256: b6dc7065e46c974bc7c5f143080a6764ec7a4be6da1285ececdc37be96de53be
251 - url: "https://pub.dev"
252 - source: hosted
253 - version: "1.1.1"
254 - flutter:
255 - dependency: "direct main"
256 - description: flutter
257 - source: sdk
258 - version: "0.0.0"
259 - flutter_mobx:
260 - dependency: "direct main"
261 - description:
262 - name: flutter_mobx
263 - sha256: ba5e93467866a2991259dc51cffd41ef45f695c667c2b8e7b087bf24118b50fe
264 - url: "https://pub.dev"
265 - source: hosted
266 - version: "2.3.0"
267 - flutter_test:
268 - dependency: "direct dev"
269 - description: flutter
270 - source: sdk
271 - version: "0.0.0"
272 - flutter_web_plugins:
273 - dependency: transitive
274 - description: flutter
275 - source: sdk
276 - version: "0.0.0"
277 - fluttertoast:
278 - dependency: "direct main"
279 - description:
280 - name: fluttertoast
281 - sha256: "25e51620424d92d3db3832464774a6143b5053f15e382d8ffbfd40b6e795dcf1"
282 - url: "https://pub.dev"
283 - source: hosted
284 - version: "8.2.12"
285 - glob:
286 - dependency: transitive
287 - description:
288 - name: glob
289 - sha256: c3f1ee72c96f8f78935e18aa8cecced9ab132419e8625dc187e1c2408efc20de
290 - url: "https://pub.dev"
291 - source: hosted
292 - version: "2.1.3"
293 - graphs:
294 - dependency: transitive
295 - description:
296 - name: graphs
297 - sha256: "741bbf84165310a68ff28fe9e727332eef1407342fca52759cb21ad8177bb8d0"
298 - url: "https://pub.dev"
299 - source: hosted
300 - version: "2.3.2"
301 - hive:
302 - dependency: "direct dev"
303 - description:
304 - name: hive
305 - sha256: "5184b6ea455689754578267c31c3b0b329cccf20a5f2bfdab6941c29c3d3c09a"
306 - url: "https://pub.dev"
307 - source: hosted
308 - version: "2.0.1"
309 - http:
310 - dependency: "direct main"
311 - description:
312 - name: http
313 - sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
314 - url: "https://pub.dev"
315 - source: hosted
316 - version: "1.3.0"
317 - http_multi_server:
318 - dependency: transitive
319 - description:
320 - name: http_multi_server
321 - sha256: aa6199f908078bb1c5efb8d8638d4ae191aac11b311132c3ef48ce352fb52ef8
322 - url: "https://pub.dev"
323 - source: hosted
324 - version: "3.2.2"
325 - http_parser:
326 - dependency: transitive
327 - description:
328 - name: http_parser
329 - sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
330 - url: "https://pub.dev"
331 - source: hosted
332 - version: "4.0.2"
333 - intl:
334 - dependency: "direct main"
335 - description:
336 - name: intl
337 - sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
338 - url: "https://pub.dev"
339 - source: hosted
340 - version: "0.19.0"
341 - io:
342 - dependency: transitive
343 - description:
344 - name: io
345 - sha256: dfd5a80599cf0165756e3181807ed3e77daf6dd4137caaad72d0b7931597650b
346 - url: "https://pub.dev"
347 - source: hosted
348 - version: "1.0.5"
349 - js:
350 - dependency: transitive
351 - description:
352 - name: js
353 - sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
354 - url: "https://pub.dev"
355 - source: hosted
356 - version: "0.6.7"
357 - json_annotation:
358 - dependency: transitive
359 - description:
360 - name: json_annotation
361 - sha256: "1ce844379ca14835a50d2f019a3099f419082cfdd231cd86a142af94dd5c6bb1"
362 - url: "https://pub.dev"
363 - source: hosted
364 - version: "4.9.0"
365 - json_bigint:
366 - dependency: "direct main"
367 - description:
368 - name: json_bigint
369 - sha256: "9e613e731847ab2154d67160682adf104cbd9863741ec2f7abfcf6e77c70592f"
370 - url: "https://pub.dev"
371 - source: hosted
372 - version: "3.1.0"
373 - leak_tracker:
374 - dependency: transitive
375 - description:
376 - name: leak_tracker
377 - sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
378 - url: "https://pub.dev"
379 - source: hosted
380 - version: "11.0.2"
381 - leak_tracker_flutter_testing:
382 - dependency: transitive
383 - description:
384 - name: leak_tracker_flutter_testing
385 - sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
386 - url: "https://pub.dev"
387 - source: hosted
388 - version: "3.0.10"
389 - leak_tracker_testing:
390 - dependency: transitive
391 - description:
392 - name: leak_tracker_testing
393 - sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
394 - url: "https://pub.dev"
395 - source: hosted
396 - version: "3.0.2"
397 - logging:
398 - dependency: transitive
399 - description:
400 - name: logging
401 - sha256: c8245ada5f1717ed44271ed1c26b8ce85ca3228fd2ffdb75468ab01979309d61
402 - url: "https://pub.dev"
403 - source: hosted
404 - version: "1.3.0"
405 - matcher:
406 - dependency: transitive
407 - description:
408 - name: matcher
409 - sha256: dc0b7dc7651697ea4ff3e69ef44b0407ea32c487a39fff6a4004fa585e901861
410 - url: "https://pub.dev"
411 - source: hosted
412 - version: "0.12.19"
413 - material_color_utilities:
414 - dependency: transitive
415 - description:
416 - name: material_color_utilities
417 - sha256: "9c337007e82b1889149c82ed242ed1cb24a66044e30979c44912381e9be4c48b"
418 - url: "https://pub.dev"
419 - source: hosted
420 - version: "0.13.0"
421 - meta:
422 - dependency: transitive
423 - description:
424 - name: meta
425 - sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
426 - url: "https://pub.dev"
427 - source: hosted
428 - version: "1.17.0"
429 - mime:
430 - dependency: transitive
431 - description:
432 - name: mime
433 - sha256: "41a20518f0cb1256669420fdba0cd90d21561e560ac240f26ef8322e45bb7ed6"
434 - url: "https://pub.dev"
435 - source: hosted
436 - version: "2.0.0"
437 - mobx:
438 - dependency: "direct main"
439 - description:
440 - name: mobx
441 - sha256: "25ea9a3ee69243d578fb6288721d8eeb18550d0391c32f896d377d994154bff2"
442 - url: "https://pub.dev"
443 - source: hosted
444 - version: "2.6.0"
445 - mobx_codegen:
446 - dependency: "direct dev"
447 - description:
448 - name: mobx_codegen
449 - sha256: "6529bcae074838004b58ad01fbe4966be182a176aacfb723686985986ebac19f"
450 - url: "https://pub.dev"
451 - source: hosted
452 - version: "2.7.7"
453 - monero:
454 - dependency: "direct main"
455 - description:
456 - path: "impls/monero.dart"
457 - ref: "3bfb3856a838f2bf6b729501837bb0295dedf25d"
458 - resolved-ref: "3bfb3856a838f2bf6b729501837bb0295dedf25d"
459 - url: "https://github.com/mrcyjanek/monero_c.git"
460 - source: git
461 - version: "0.0.0"
462 - nested:
463 - dependency: transitive
464 - description:
465 - name: nested
466 - sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
467 - url: "https://pub.dev"
468 - source: hosted
469 - version: "1.0.0"
470 - on_chain:
471 - dependency: transitive
472 - description:
473 - path: "."
474 - ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
475 - resolved-ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
476 - url: "https://github.com/cake-tech/on_chain.git"
477 - source: git
478 - version: "3.7.0"
479 - package_config:
480 - dependency: transitive
481 - description:
482 - name: package_config
483 - sha256: "92d4488434b520a62570293fbd33bb556c7d49230791c1b4bbd973baf6d2dc67"
484 - url: "https://pub.dev"
485 - source: hosted
486 - version: "2.1.1"
487 - path:
488 - dependency: transitive
489 - description:
490 - name: path
491 - sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
492 - url: "https://pub.dev"
493 - source: hosted
494 - version: "1.9.1"
495 - path_provider:
496 - dependency: "direct main"
497 - description:
498 - name: path_provider
499 - sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
500 - url: "https://pub.dev"
501 - source: hosted
502 - version: "2.1.5"
503 - path_provider_android:
504 - dependency: transitive
505 - description:
506 - name: path_provider_android
507 - sha256: "4adf4fd5423ec60a29506c76581bc05854c55e3a0b72d35bb28d661c9686edf2"
508 - url: "https://pub.dev"
509 - source: hosted
510 - version: "2.2.15"
511 - path_provider_foundation:
512 - dependency: transitive
513 - description:
514 - name: path_provider_foundation
515 - sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
516 - url: "https://pub.dev"
517 - source: hosted
518 - version: "2.4.1"
519 - path_provider_linux:
520 - dependency: transitive
521 - description:
522 - name: path_provider_linux
523 - sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
524 - url: "https://pub.dev"
525 - source: hosted
526 - version: "2.2.1"
527 - path_provider_platform_interface:
528 - dependency: transitive
529 - description:
530 - name: path_provider_platform_interface
531 - sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
532 - url: "https://pub.dev"
533 - source: hosted
534 - version: "2.1.2"
535 - path_provider_windows:
536 - dependency: transitive
537 - description:
538 - name: path_provider_windows
539 - sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
540 - url: "https://pub.dev"
541 - source: hosted
542 - version: "2.3.0"
543 - petitparser:
544 - dependency: transitive
545 - description:
546 - name: petitparser
547 - sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27
548 - url: "https://pub.dev"
549 - source: hosted
550 - version: "6.0.2"
551 - platform:
552 - dependency: transitive
553 - description:
554 - name: platform
555 - sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
556 - url: "https://pub.dev"
557 - source: hosted
558 - version: "3.1.6"
559 - plugin_platform_interface:
560 - dependency: transitive
561 - description:
562 - name: plugin_platform_interface
563 - sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
564 - url: "https://pub.dev"
565 - source: hosted
566 - version: "2.1.8"
567 - pointycastle:
568 - dependency: transitive
569 - description:
570 - name: pointycastle
571 - sha256: "4be0097fcf3fd3e8449e53730c631200ebc7b88016acecab2b0da2f0149222fe"
572 - url: "https://pub.dev"
573 - source: hosted
574 - version: "3.9.1"
575 - pool:
576 - dependency: transitive
577 - description:
578 - name: pool
579 - sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
580 - url: "https://pub.dev"
581 - source: hosted
582 - version: "1.5.1"
583 - provider:
584 - dependency: transitive
585 - description:
586 - name: provider
587 - sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c
588 - url: "https://pub.dev"
589 - source: hosted
590 - version: "6.1.2"
591 - pub_semver:
592 - dependency: transitive
593 - description:
594 - name: pub_semver
595 - sha256: "7b3cfbf654f3edd0c6298ecd5be782ce997ddf0e00531b9464b55245185bbbbd"
596 - url: "https://pub.dev"
597 - source: hosted
598 - version: "2.1.5"
599 - pubspec_parse:
600 - dependency: transitive
601 - description:
602 - name: pubspec_parse
603 - sha256: "81876843eb50dc2e1e5b151792c9a985c5ed2536914115ed04e9c8528f6647b0"
604 - url: "https://pub.dev"
605 - source: hosted
606 - version: "1.4.0"
607 - rational:
608 - dependency: transitive
609 - description:
610 - name: rational
611 - sha256: cb808fb6f1a839e6fc5f7d8cb3b0a10e1db48b3be102de73938c627f0b636336
612 - url: "https://pub.dev"
613 - source: hosted
614 - version: "2.2.3"
615 - shelf:
616 - dependency: transitive
617 - description:
618 - name: shelf
619 - sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4
620 - url: "https://pub.dev"
621 - source: hosted
622 - version: "1.4.1"
623 - shelf_web_socket:
624 - dependency: transitive
625 - description:
626 - name: shelf_web_socket
627 - sha256: cc36c297b52866d203dbf9332263c94becc2fe0ceaa9681d07b6ef9807023b67
628 - url: "https://pub.dev"
629 - source: hosted
630 - version: "2.0.1"
631 - sky_engine:
632 - dependency: transitive
633 - description: flutter
634 - source: sdk
635 - version: "0.0.0"
636 - socks5_proxy:
637 - dependency: transitive
638 - description:
639 - path: "."
640 - ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
641 - resolved-ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
642 - url: "https://github.com/LacticWhale/socks_dart"
643 - source: git
644 - version: "2.1.0"
645 - socks_socket:
646 - dependency: transitive
647 - description:
648 - path: "."
649 - ref: e6232c53c1595469931ababa878759a067c02e94
650 - resolved-ref: e6232c53c1595469931ababa878759a067c02e94
651 - url: "https://github.com/sneurlax/socks_socket"
652 - source: git
653 - version: "1.1.1"
654 - source_gen:
655 - dependency: transitive
656 - description:
657 - name: source_gen
658 - sha256: ec37cc0e6694374cbef59ed79685572c870a54ede6fa30a3e420feb3adffea02
659 - url: "https://pub.dev"
660 - source: hosted
661 - version: "4.2.3"
662 - source_span:
663 - dependency: transitive
664 - description:
665 - name: source_span
666 - sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
667 - url: "https://pub.dev"
668 - source: hosted
669 - version: "1.10.1"
670 - sqflite:
671 - dependency: transitive
672 - description:
673 - name: sqflite
674 - sha256: "2d7299468485dca85efeeadf5d38986909c5eb0cd71fd3db2c2f000e6c9454bb"
675 - url: "https://pub.dev"
676 - source: hosted
677 - version: "2.4.1"
678 - sqflite_android:
679 - dependency: transitive
680 - description:
681 - name: sqflite_android
682 - sha256: "78f489aab276260cdd26676d2169446c7ecd3484bbd5fead4ca14f3ed4dd9ee3"
683 - url: "https://pub.dev"
684 - source: hosted
685 - version: "2.4.0"
686 - sqflite_common:
687 - dependency: transitive
688 - description:
689 - name: sqflite_common
690 - sha256: "761b9740ecbd4d3e66b8916d784e581861fd3c3553eda85e167bc49fdb68f709"
691 - url: "https://pub.dev"
692 - source: hosted
693 - version: "2.5.4+6"
694 - sqflite_common_ffi:
695 - dependency: transitive
696 - description:
697 - name: sqflite_common_ffi
698 - sha256: "883dd810b2b49e6e8c3b980df1829ef550a94e3f87deab5d864917d27ca6bf36"
699 - url: "https://pub.dev"
700 - source: hosted
701 - version: "2.3.4+4"
702 - sqflite_darwin:
703 - dependency: transitive
704 - description:
705 - name: sqflite_darwin
706 - sha256: "22adfd9a2c7d634041e96d6241e6e1c8138ca6817018afc5d443fef91dcefa9c"
707 - url: "https://pub.dev"
708 - source: hosted
709 - version: "2.4.1+1"
710 - sqflite_platform_interface:
711 - dependency: transitive
712 - description:
713 - name: sqflite_platform_interface
714 - sha256: "8dd4515c7bdcae0a785b0062859336de775e8c65db81ae33dd5445f35be61920"
715 - url: "https://pub.dev"
716 - source: hosted
717 - version: "2.4.0"
718 - sqlite3:
719 - dependency: transitive
720 - description:
721 - name: sqlite3
722 - sha256: f393d92c71bdcc118d6203d07c991b9be0f84b1a6f89dd4f7eed348131329924
723 - url: "https://pub.dev"
724 - source: hosted
725 - version: "2.9.0"
726 - sqlite3_flutter_libs:
727 - dependency: transitive
728 - description:
729 - name: sqlite3_flutter_libs
730 - sha256: "69c80d812ef2500202ebd22002cbfc1b6565e9ff56b2f971e757fac5d42294df"
731 - url: "https://pub.dev"
732 - source: hosted
733 - version: "0.5.40"
734 - stack_trace:
735 - dependency: transitive
736 - description:
737 - name: stack_trace
738 - sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
739 - url: "https://pub.dev"
740 - source: hosted
741 - version: "1.12.1"
742 - stream_channel:
743 - dependency: transitive
744 - description:
745 - name: stream_channel
746 - sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
747 - url: "https://pub.dev"
748 - source: hosted
749 - version: "2.1.4"
750 - stream_transform:
751 - dependency: transitive
752 - description:
753 - name: stream_transform
754 - sha256: ad47125e588cfd37a9a7f86c7d6356dde8dfe89d071d293f80ca9e9273a33871
755 - url: "https://pub.dev"
756 - source: hosted
757 - version: "2.1.1"
758 - string_scanner:
759 - dependency: transitive
760 - description:
761 - name: string_scanner
762 - sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
763 - url: "https://pub.dev"
764 - source: hosted
765 - version: "1.4.1"
766 - synchronized:
767 - dependency: transitive
768 - description:
769 - name: synchronized
770 - sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225"
771 - url: "https://pub.dev"
772 - source: hosted
773 - version: "3.3.0+3"
774 - term_glyph:
775 - dependency: transitive
776 - description:
777 - name: term_glyph
778 - sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
779 - url: "https://pub.dev"
780 - source: hosted
781 - version: "1.2.2"
782 - test_api:
783 - dependency: transitive
784 - description:
785 - name: test_api
786 - sha256: "8161c84903fd860b26bfdefb7963b3f0b68fee7adea0f59ef805ecca346f0c7a"
787 - url: "https://pub.dev"
788 - source: hosted
789 - version: "0.7.10"
790 - torch_dart:
791 - dependency: transitive
792 - description:
793 - path: "../scripts/torch_dart"
794 - relative: true
795 - source: path
796 - version: "0.0.1"
797 - tuple:
798 - dependency: transitive
799 - description:
800 - name: tuple
801 - sha256: a97ce2013f240b2f3807bcbaf218765b6f301c3eff91092bcfa23a039e7dd151
802 - url: "https://pub.dev"
803 - source: hosted
804 - version: "2.0.2"
805 - typed_data:
806 - dependency: transitive
807 - description:
808 - name: typed_data
809 - sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
810 - url: "https://pub.dev"
811 - source: hosted
812 - version: "1.4.0"
813 - unorm_dart:
814 - dependency: transitive
815 - description:
816 - name: unorm_dart
817 - sha256: "23d8bf65605401a6a32cff99435fed66ef3dab3ddcad3454059165df46496a3b"
818 - url: "https://pub.dev"
819 - source: hosted
820 - version: "0.3.0"
821 - vector_math:
822 - dependency: transitive
823 - description:
824 - name: vector_math
825 - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
826 - url: "https://pub.dev"
827 - source: hosted
828 - version: "2.2.0"
829 - vm_service:
830 - dependency: transitive
831 - description:
832 - name: vm_service
833 - sha256: ddfa8d30d89985b96407efce8acbdd124701f96741f2d981ca860662f1c0dc02
834 - url: "https://pub.dev"
835 - source: hosted
836 - version: "15.0.0"
837 - watcher:
838 - dependency: "direct overridden"
839 - description:
840 - name: watcher
841 - sha256: "69da27e49efa56a15f8afe8f4438c4ec02eff0a117df1b22ea4aad194fe1c104"
842 - url: "https://pub.dev"
843 - source: hosted
844 - version: "1.1.1"
845 - web:
846 - dependency: transitive
847 - description:
848 - name: web
849 - sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a"
850 - url: "https://pub.dev"
851 - source: hosted
852 - version: "1.1.1"
853 - web_socket:
854 - dependency: transitive
855 - description:
856 - name: web_socket
857 - sha256: "3c12d96c0c9a4eec095246debcea7b86c0324f22df69893d538fcc6f1b8cce83"
858 - url: "https://pub.dev"
859 - source: hosted
860 - version: "0.1.6"
861 - web_socket_channel:
862 - dependency: transitive
863 - description:
864 - name: web_socket_channel
865 - sha256: "0b8e2457400d8a859b7b2030786835a28a8e80836ef64402abef392ff4f1d0e5"
866 - url: "https://pub.dev"
867 - source: hosted
868 - version: "3.0.2"
869 - xdg_directories:
870 - dependency: transitive
871 - description:
872 - name: xdg_directories
873 - sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
874 - url: "https://pub.dev"
875 - source: hosted
876 - version: "1.1.0"
877 - yaml:
878 - dependency: transitive
879 - description:
880 - name: yaml
881 - sha256: b9da305ac7c39faa3f030eccd175340f968459dae4af175130b3fc47e40d76ce
882 - url: "https://pub.dev"
883 - source: hosted
884 - version: "3.1.3"
885 -sdks:
886 - dart: ">=3.10.0 <4.0.0"
887 - flutter: ">=3.24.0"
cw_zano/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
cw_zcash/.gitignore
-4
@@ -1,7 +1,3 @@
1 # https://dart.dev/guides/libraries/private-files
2 # Created by `dart pub`
3 .dart_tool/
4 -
5 -# Avoid committing pubspec.lock for library packages; see
6 -# https://dart.dev/guides/libraries/private-files#pubspeclock.
7 -pubspec.lock
cw_zcash/pubspec_overrides.yaml new
+1
@@ -0,0 +1 @@
1 +../pubspec_overrides.yaml
\ No newline at end of file
ios/Podfile.lock
+7 -1
@@ -249,6 +249,8 @@ SPEC CHECKSUMS:
249 bitbox_flutter: 9505732798041c413152669751beeaecc5fe400f
250 connectivity_plus: cb623214f4e1f6ef8fe7403d580fdad517d2f7dd
251 CryptoSwift: e64e11850ede528a02a0f3e768cec8e9d92ecb90
252 + cw_decred: a02cf30175a46971c1e2fa22c48407534541edc6
253 + cw_mweb: 3aea2fb35b2bd04d8b2d21b83216f3b8fb768d85
254 device_display_brightness: 04374ebd653619292c1d996f00f42877ea19f17f
255 device_info_plus: 335f3ce08d2e174b9fdc3db3db0f4e3b1f66bd89
256 devicelocale: bd64aa714485a8afdaded0892c1e7d5b7f680cf8
@@ -262,13 +264,16 @@ SPEC CHECKSUMS:
264 flutter_local_authentication: 989278c681612f1ee0e36019e149137f114b9d7f
265 flutter_local_notifications: a5a732f069baa862e728d839dd2ebb904737effb
266 flutter_mailer: 3a8cd4f36c960fb04528d5471097270c19fec1c4
267 + flutter_native_splash: c32d145d68aeda5502d5f543ee38c192065986cf
268 flutter_secure_storage: 2c2ff13db9e0a5647389bff88b0ecac56e3f3418
269 fluttertoast: 2c67e14dce98bbdb200df9e1acf610d7a6264ea1
270 image_picker_ios: e0ece4aa2a75771a7de3fa735d26d90817041326
271 in_app_review: 7dd1ea365263f834b8464673f9df72c80c17c937
272 integration_test: 4a889634ef21a45d28d50d622cf412dc6d9f586e
273 + local_auth_darwin: c3ee6cce0a8d56be34c8ccb66ba31f7f180aaebb
274 OrderedSet: e539b66b644ff081c73a262d24ad552a69be3a94
275 package_info_plus: af8e2ca6888548050f16fa2f1938db7b5a5df499
276 + payjoin_flutter: d9d4c8aa16bd5dfedb9b21d0edc8199e0187d96e
277 permission_handler_apple: 92d754bbaa7361d436db2d6c3c1c2a0fdcec462e
278 quick_actions_ios: 500fcc11711d9f646739093395c4ae8eec25f779
279 reown_yttrium: cee334ade64725b1d83f7b34c706a6aae2696d58
@@ -276,13 +281,14 @@ SPEC CHECKSUMS:
281 sensitive_clipboard: 161e9abc3d56b3131309d8a321eb4690a803c16b
282 share_plus: 50da8cb520a8f0f65671c6c6a99b3617ed10a58a
283 shared_preferences_foundation: 7036424c3d8ec98dfe75ff1667cb0cd531ec82bb
284 + sp_scanner: b1bc9321690980bdb44bba7ec85d5543e716d1b5
285 sqflite_darwin: 20b2a3a3b70e43edae938624ce550a3cbf66a3d0
286 sqlite3: 73513155ec6979715d3904ef53a8d68892d4032b
287 sqlite3_flutter_libs: 83f8e9f5b6554077f1d93119fe20ebaa5f3a9ef1
288 SwiftyGif: 706c60cf65fa2bc5ee0313beece843c8eb8194d4
289 torch_dart: f4620705d10f05492fab047f2fa1c3a600e7d17d
290 uni_links: ed8c961e47ed9ce42b6d91e1de8049e38a4b3152
285 - universal_ble: a322ebabee64f0ec27a313e89a5dd6967f37a60f
291 + universal_ble: 45519b2aeafe62761e2c6309f8927edb5288b914
292 url_launcher_ios: 7a95fa5b60cc718a708b8f2966718e93db0cef1b
293 wakelock_plus: e29112ab3ef0b318e58cfa5c32326458be66b556
294 YttriumWrapper: 31e937fe9fbe0f1314d2ca6be9ce9b379a059966
model_generator.sh
+14 -1
@@ -1,11 +1,14 @@
1 #!/bin/bash
2 set -x -e
3
4 +pids=()
5 +
6 for cwcoin in cw_{core,evm,monero,bitcoin,nano,bitcoin_cash,solana,tron,wownero,zano,decred,dogecoin,zcash}
7 do
8 if [[ "x$1" == "xasync" ]];
9 then
8 - bash -c "cd $cwcoin; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd .." &
10 + env PUB_CACHE=$HOME/.cache/pub-cache-$cwcoin bash -c "cd $cwcoin; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd .." &
11 + pids+=($!)
12 else
13 cd $cwcoin; flutter pub get; dart run build_runner build --delete-conflicting-outputs; cd ..
14 fi
@@ -15,10 +18,20 @@ do
18 if [[ "x$1" == "xasync" ]];
19 then
20 bash -c "cd $cwcoin; flutter pub get; cd .." &
21 + pids+=($!)
22 else
23 cd $cwcoin; flutter pub get; cd ..
24 fi
25 done
26
27 +for pid in "${pids[@]}"; do
28 + if ! wait "$pid"; then
29 + ec=$?
30 + echo "Error: Failed to generate models: $ec"
31 + exit $ec
32 + fi
33 +done
34 +
35 flutter pub get
36 dart run build_runner build --delete-conflicting-outputs
37 +flutter pub get
pubspec.lock new
+3495
@@ -0,0 +1,3495 @@
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 + adaptive_number:
13 + dependency: "direct overridden"
14 + description:
15 + path: "."
16 + ref: c3f06de08064acca1b04975abcd4c3977c0b5256
17 + resolved-ref: c3f06de08064acca1b04975abcd4c3977c0b5256
18 + url: "https://github.com/lemoony/adaptive_number_dart"
19 + source: git
20 + version: "1.0.0"
21 + analyzer:
22 + dependency: transitive
23 + description:
24 + name: analyzer
25 + sha256: de7148ed2fcec579b19f122c1800933dfa028f6d9fd38a152b04b1516cec120b
26 + url: "https://pub.dev"
27 + source: hosted
28 + version: "10.0.1"
29 + animate_do:
30 + dependency: "direct main"
31 + description:
32 + path: "."
33 + ref: "94ca5c43abd93901fcd97b47102b6e5d37ce67ca"
34 + resolved-ref: "94ca5c43abd93901fcd97b47102b6e5d37ce67ca"
35 + url: "https://github.com/Klerith/animate_do_package"
36 + source: git
37 + version: "2.1.0"
38 + animated_reorderable_list:
39 + dependency: "direct overridden"
40 + description:
41 + path: "."
42 + ref: "4a6810d0a912018fb0b193337f46973a478fcc4b"
43 + resolved-ref: "4a6810d0a912018fb0b193337f46973a478fcc4b"
44 + url: "https://github.com/canopas/animated_reorderable_list"
45 + source: git
46 + version: "1.3.0"
47 + another_flushbar:
48 + dependency: "direct main"
49 + description:
50 + path: "."
51 + ref: a334e8e2dfbe3d5e531b63f72164093aa399047b
52 + resolved-ref: a334e8e2dfbe3d5e531b63f72164093aa399047b
53 + url: "https://github.com/ideployed/another-flushbar"
54 + source: git
55 + version: "1.12.32"
56 + ansicolor:
57 + dependency: "direct overridden"
58 + description:
59 + path: "."
60 + ref: "35e67e6eb2da5e6d726fadfa90ccf437981c1e65"
61 + resolved-ref: "35e67e6eb2da5e6d726fadfa90ccf437981c1e65"
62 + url: "https://github.com/google/ansicolor-dart"
63 + source: git
64 + version: "2.0.3"
65 + archive:
66 + dependency: "direct main"
67 + description:
68 + path: "."
69 + ref: f01d6a340ffe24e0ef46fa682d1b6bcc7b7aef13
70 + resolved-ref: f01d6a340ffe24e0ef46fa682d1b6bcc7b7aef13
71 + url: "https://github.com/brendan-duncan/archive"
72 + source: git
73 + version: "4.0.9"
74 + args:
75 + dependency: "direct overridden"
76 + description:
77 + path: "pkgs/args"
78 + ref: "61e677100b06d56a1b3731ab1178ebf9102ecb1f"
79 + resolved-ref: "61e677100b06d56a1b3731ab1178ebf9102ecb1f"
80 + url: "https://github.com/dart-lang/core"
81 + source: git
82 + version: "2.7.0"
83 + asn1lib:
84 + dependency: "direct overridden"
85 + description:
86 + path: "."
87 + ref: "1616ff662cd84301e029d1fa936acb8192a2b165"
88 + resolved-ref: "1616ff662cd84301e029d1fa936acb8192a2b165"
89 + url: "https://github.com/wstrange/asn1lib"
90 + source: git
91 + version: "1.6.5"
92 + async:
93 + dependency: "direct overridden"
94 + description:
95 + path: "pkgs/async"
96 + ref: "158d80dc6d17c7b967e655e27a859cbc1c6aa71d"
97 + resolved-ref: "158d80dc6d17c7b967e655e27a859cbc1c6aa71d"
98 + url: "https://github.com/dart-lang/core"
99 + source: git
100 + version: "2.13.1"
101 + auto_size_text:
102 + dependency: "direct main"
103 + description:
104 + path: "."
105 + ref: "2178f0821132636bc4f0dea1bc4d40a889d8249b"
106 + resolved-ref: "2178f0821132636bc4f0dea1bc4d40a889d8249b"
107 + url: "https://github.com/leisim/auto_size_text"
108 + source: git
109 + version: "3.0.0"
110 + awesome_dialog:
111 + dependency: "direct overridden"
112 + description:
113 + path: "."
114 + ref: c7923f15d1d22de5c9077fff0bab6f9cc6463540
115 + resolved-ref: c7923f15d1d22de5c9077fff0bab6f9cc6463540
116 + url: "https://github.com/marcos930807/awesomeDialogs"
117 + source: git
118 + version: "3.2.1"
119 + base32:
120 + dependency: "direct main"
121 + description:
122 + path: "."
123 + ref: "6ed989354aee7865ee74f3f1802268dd81bb234d"
124 + resolved-ref: "6ed989354aee7865ee74f3f1802268dd81bb234d"
125 + url: "https://github.com/Daegalus/dart-base32"
126 + source: git
127 + version: "2.1.3"
128 + base58check:
129 + dependency: "direct overridden"
130 + description:
131 + path: "."
132 + ref: "240913d11885ee80506ff6f51033ddf527106086"
133 + resolved-ref: "240913d11885ee80506ff6f51033ddf527106086"
134 + url: "https://github.com/dartcoin/base58check"
135 + source: git
136 + version: "2.0.0"
137 + base_x:
138 + dependency: "direct overridden"
139 + description:
140 + path: "."
141 + ref: b434cc7890337af7c04004c681018a2f32689217
142 + resolved-ref: b434cc7890337af7c04004c681018a2f32689217
143 + url: "https://github.com/litaoh/base-x"
144 + source: git
145 + version: "2.0.1"
146 + basic_utils:
147 + dependency: "direct main"
148 + description:
149 + path: "."
150 + ref: "6a5034927857a08f3bdf5a177529e361179f6dab"
151 + resolved-ref: "6a5034927857a08f3bdf5a177529e361179f6dab"
152 + url: "https://github.com/Ephenodrom/Dart-Basic-Utils"
153 + source: git
154 + version: "5.7.0"
155 + bbqrdart:
156 + dependency: "direct main"
157 + description:
158 + path: "."
159 + ref: e867e3d0156d0b29858100f30adc2625b9dae586
160 + resolved-ref: e867e3d0156d0b29858100f30adc2625b9dae586
161 + url: "https://github.com/mrcyjanek/bbqrdart"
162 + source: git
163 + version: "1.0.0"
164 + bech32:
165 + dependency: "direct overridden"
166 + description:
167 + path: "."
168 + ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
169 + resolved-ref: "05755063b593aa6cca0a4820a318e0ce17de6192"
170 + url: "https://github.com/cake-tech/bech32.git"
171 + source: git
172 + version: "0.2.2"
173 + bip32:
174 + dependency: "direct overridden"
175 + description:
176 + path: "."
177 + ref: b5c6a6e891b89f92529799b42af62b8a8af09eaf
178 + resolved-ref: b5c6a6e891b89f92529799b42af62b8a8af09eaf
179 + url: "https://github.com/dart-bitcoin/bip32-dart"
180 + source: git
181 + version: "2.0.0"
182 + bip340:
183 + dependency: "direct overridden"
184 + description:
185 + path: "."
186 + ref: bbab1a01b6b6ab7c18f26294febb3bee38b24798
187 + resolved-ref: bbab1a01b6b6ab7c18f26294febb3bee38b24798
188 + url: "https://github.com/fiatjaf/dart-bip340"
189 + source: git
190 + version: "0.2.0"
191 + bip39:
192 + dependency: "direct overridden"
193 + description:
194 + path: "."
195 + ref: "3633daa2026b98c523ae9a091322be2903f7a8ab"
196 + resolved-ref: "3633daa2026b98c523ae9a091322be2903f7a8ab"
197 + url: "https://github.com/anicdh/bip39"
198 + source: git
199 + version: "1.0.6"
200 + bitbox:
201 + dependency: "direct overridden"
202 + description:
203 + path: "."
204 + ref: "57b78afb85bd2c30d3cdb9f7884f3878a62be442"
205 + resolved-ref: "57b78afb85bd2c30d3cdb9f7884f3878a62be442"
206 + url: "https://github.com/cake-tech/bitbox-flutter.git"
207 + source: git
208 + version: "1.0.1"
209 + bitbox_flutter:
210 + dependency: "direct main"
211 + description:
212 + path: "scripts/bitbox_flutter"
213 + relative: true
214 + source: path
215 + version: "0.0.1"
216 + bitcoin_base:
217 + dependency: "direct overridden"
218 + description:
219 + path: "."
220 + ref: bda0e2904effa799ec835b4578cc3fc5d31caa78
221 + resolved-ref: bda0e2904effa799ec835b4578cc3fc5d31caa78
222 + url: "https://github.com/cake-tech/bitcoin_base"
223 + source: git
224 + version: "4.7.0"
225 + bloc:
226 + dependency: "direct main"
227 + description:
228 + path: "packages/bloc"
229 + ref: "60892540c1faec3fd01cc8c8fea378a59cf42e3d"
230 + resolved-ref: "60892540c1faec3fd01cc8c8fea378a59cf42e3d"
231 + url: "https://github.com/felangel/bloc"
232 + source: git
233 + version: "9.2.1"
234 + bloc_concurrency:
235 + dependency: "direct main"
236 + description:
237 + path: "packages/bloc_concurrency"
238 + ref: "13dbe0ce078e7efaebb54b37489879daeb57459d"
239 + resolved-ref: "13dbe0ce078e7efaebb54b37489879daeb57459d"
240 + url: "https://github.com/felangel/bloc"
241 + source: git
242 + version: "0.3.0"
243 + blockchain_utils:
244 + dependency: "direct main"
245 + description:
246 + path: "."
247 + ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
248 + resolved-ref: "59fdf29d72068e0522a96a8953ed7272833a9f57"
249 + url: "https://github.com/cake-tech/blockchain_utils"
250 + source: git
251 + version: "3.3.0"
252 + bluez:
253 + dependency: "direct overridden"
254 + description:
255 + path: "."
256 + ref: f02727e93b61585ea6c5a6a18ebf84b7374a71d3
257 + resolved-ref: f02727e93b61585ea6c5a6a18ebf84b7374a71d3
258 + url: "https://github.com/canonical/bluez.dart"
259 + source: git
260 + version: "0.8.3"
261 + boolean_selector:
262 + dependency: "direct overridden"
263 + description:
264 + path: "pkgs/boolean_selector"
265 + ref: b1312b18df67b0be3101ca15c03dfd8d7c9383bb
266 + resolved-ref: b1312b18df67b0be3101ca15c03dfd8d7c9383bb
267 + url: "https://github.com/dart-lang/tools"
268 + source: git
269 + version: "2.1.2"
270 + borsh_annotation:
271 + dependency: "direct overridden"
272 + description:
273 + path: "packages/borsh_annotation"
274 + ref: ab60e9d4c7d7271037597154ad2a835812054ed6
275 + resolved-ref: ab60e9d4c7d7271037597154ad2a835812054ed6
276 + url: "https://github.com/espresso-cash/espresso-cash-public"
277 + source: git
278 + version: "0.3.2"
279 + breez_sdk_spark_flutter:
280 + dependency: "direct overridden"
281 + description:
282 + path: "."
283 + ref: e18b6437daaf0572de6aea2439c2ec4d22658bbb
284 + resolved-ref: e18b6437daaf0572de6aea2439c2ec4d22658bbb
285 + url: "https://github.com/breez/breez-sdk-spark-flutter"
286 + source: git
287 + version: "0.14.0"
288 + bs58:
289 + dependency: "direct overridden"
290 + description:
291 + path: "."
292 + ref: "637d7b4bef20ac4edb553ef20e40725c4a213736"
293 + resolved-ref: "637d7b4bef20ac4edb553ef20e40725c4a213736"
294 + url: "https://github.com/litaoh/base58"
295 + source: git
296 + version: "1.0.2"
297 + bs58check:
298 + dependency: "direct overridden"
299 + description:
300 + path: "."
301 + ref: "1216b214e26332ccc4a3de4c9eac87de7fd47b5a"
302 + resolved-ref: "1216b214e26332ccc4a3de4c9eac87de7fd47b5a"
303 + url: "https://github.com/MrCyjaneK/bs58check"
304 + source: git
305 + version: "1.0.2"
306 + bubble:
307 + dependency: "direct overridden"
308 + description:
309 + path: "."
310 + ref: "6a90afbbb8fee0dccfd7843248c74c1f8460e813"
311 + resolved-ref: "6a90afbbb8fee0dccfd7843248c74c1f8460e813"
312 + url: "https://github.com/vi-k/bubble"
313 + source: git
314 + version: "1.2.1"
315 + buffer:
316 + dependency: "direct overridden"
317 + description:
318 + path: "."
319 + ref: "96be675b6f2bbca859a13da6c5f551ffd7eebc1c"
320 + resolved-ref: "96be675b6f2bbca859a13da6c5f551ffd7eebc1c"
321 + url: "https://github.com/isoos/buffer"
322 + source: git
323 + version: "1.2.3"
324 + build:
325 + dependency: "direct overridden"
326 + description:
327 + path: build
328 + ref: "565856b394c26a0d4c8cda88b69b6dcfaa2acd1f"
329 + resolved-ref: "565856b394c26a0d4c8cda88b69b6dcfaa2acd1f"
330 + url: "https://github.com/dart-lang/build"
331 + source: git
332 + version: "4.0.7"
333 + build_cli_annotations:
334 + dependency: "direct overridden"
335 + description:
336 + path: build_cli_annotations
337 + ref: d01ba0ba11a73b4e541ff65508ae55842a8f887f
338 + resolved-ref: d01ba0ba11a73b4e541ff65508ae55842a8f887f
339 + url: "https://github.com/kevmoo/build_cli"
340 + source: git
341 + version: "2.1.1"
342 + build_config:
343 + dependency: "direct overridden"
344 + description:
345 + path: build_config
346 + ref: "7d6c879a01d80056b3eae52f7fab2237103a7fe7"
347 + resolved-ref: "7d6c879a01d80056b3eae52f7fab2237103a7fe7"
348 + url: "https://github.com/dart-lang/build"
349 + source: git
350 + version: "1.3.2"
351 + build_daemon:
352 + dependency: "direct overridden"
353 + description:
354 + path: build_daemon
355 + ref: f20f2a24e0e1259f6ee53c6828d7c396d5b23bbf
356 + resolved-ref: f20f2a24e0e1259f6ee53c6828d7c396d5b23bbf
357 + url: "https://github.com/dart-lang/build"
358 + source: git
359 + version: "4.1.5"
360 + build_runner:
361 + dependency: "direct dev"
362 + description:
363 + path: build_runner
364 + ref: "565856b394c26a0d4c8cda88b69b6dcfaa2acd1f"
365 + resolved-ref: "565856b394c26a0d4c8cda88b69b6dcfaa2acd1f"
366 + url: "https://github.com/dart-lang/build"
367 + source: git
368 + version: "2.15.1"
369 + built_collection:
370 + dependency: "direct overridden"
371 + description:
372 + path: "."
373 + ref: "8153cc41299a28e4426b22959f87dca0f7f8cd19"
374 + resolved-ref: "8153cc41299a28e4426b22959f87dca0f7f8cd19"
375 + url: "https://github.com/google/built_collection.dart"
376 + source: git
377 + version: "5.1.1"
378 + built_value:
379 + dependency: "direct overridden"
380 + description:
381 + path: built_value
382 + ref: b66790e815350e8c569bfe723d5263925df5a46d
383 + resolved-ref: b66790e815350e8c569bfe723d5263925df5a46d
384 + url: "https://github.com/google/built_value.dart"
385 + source: git
386 + version: "8.12.7"
387 + cake_backup:
388 + dependency: "direct main"
389 + description:
390 + path: "."
391 + ref: "3aba867dcab6737f6707782f5db15d71f303db38"
392 + resolved-ref: "3aba867dcab6737f6707782f5db15d71f303db38"
393 + url: "https://github.com/cake-tech/cake_backup.git"
394 + source: git
395 + version: "1.0.0+1"
396 + characters:
397 + dependency: "direct overridden"
398 + description:
399 + path: "pkgs/characters"
400 + ref: b59ecf4ceebe6153e1c0166b7c9a7fdd9458a89d
401 + resolved-ref: b59ecf4ceebe6153e1c0166b7c9a7fdd9458a89d
402 + url: "https://github.com/dart-lang/core"
403 + source: git
404 + version: "1.4.1"
405 + checked_yaml:
406 + dependency: "direct overridden"
407 + description:
408 + path: checked_yaml
409 + ref: d30c2fdb0598d548c25705931531842957623fdd
410 + resolved-ref: d30c2fdb0598d548c25705931531842957623fdd
411 + url: "https://github.com/google/json_serializable.dart"
412 + source: git
413 + version: "2.0.4"
414 + cli_config:
415 + dependency: "direct overridden"
416 + description:
417 + path: "pkgs/cli_config"
418 + ref: "378790dd8cdaecd8cb48283de445f7cf80419cc0"
419 + resolved-ref: "378790dd8cdaecd8cb48283de445f7cf80419cc0"
420 + url: "https://github.com/dart-lang/tools"
421 + source: git
422 + version: "0.2.0"
423 + cli_util:
424 + dependency: "direct overridden"
425 + description:
426 + path: "pkgs/cli_util"
427 + ref: d7a7e2ebba2fdc25e78000a1af08508b60beb7fc
428 + resolved-ref: d7a7e2ebba2fdc25e78000a1af08508b60beb7fc
429 + url: "https://github.com/dart-lang/tools"
430 + source: git
431 + version: "0.4.2"
432 + clock:
433 + dependency: "direct overridden"
434 + description:
435 + path: "pkgs/clock"
436 + ref: "04f7512ab6d7d554e33abd124a41e2aeec97dcbd"
437 + resolved-ref: "04f7512ab6d7d554e33abd124a41e2aeec97dcbd"
438 + url: "https://github.com/dart-lang/tools"
439 + source: git
440 + version: "1.1.2"
441 + code_assets:
442 + dependency: "direct overridden"
443 + description:
444 + path: "pkgs/code_assets"
445 + ref: fca756b953bc94f109039dd553f0bc18de620338
446 + resolved-ref: fca756b953bc94f109039dd553f0bc18de620338
447 + url: "https://github.com/dart-lang/native"
448 + source: git
449 + version: "1.2.1"
450 + code_builder:
451 + dependency: "direct overridden"
452 + description:
453 + path: "pkgs/code_builder"
454 + ref: "125b9a9a5556fa88ecec26f649e1cddb1623aa2f"
455 + resolved-ref: "125b9a9a5556fa88ecec26f649e1cddb1623aa2f"
456 + url: "https://github.com/dart-lang/tools"
457 + source: git
458 + version: "4.11.1"
459 + collection:
460 + dependency: "direct overridden"
461 + description:
462 + path: "pkgs/collection"
463 + ref: dec28c1d477cd191e2af868579817b926b07d9f5
464 + resolved-ref: dec28c1d477cd191e2af868579817b926b07d9f5
465 + url: "https://github.com/dart-lang/core"
466 + source: git
467 + version: "1.19.1"
468 + connectivity_plus:
469 + dependency: "direct main"
470 + description:
471 + path: "packages/connectivity_plus/connectivity_plus"
472 + ref: "9f03424b7916b195ec6a4bebe4cc1a310ba40d4a"
473 + resolved-ref: "9f03424b7916b195ec6a4bebe4cc1a310ba40d4a"
474 + url: "https://github.com/fluttercommunity/plus_plugins"
475 + source: git
476 + version: "6.1.5"
477 + connectivity_plus_platform_interface:
478 + dependency: "direct overridden"
479 + description:
480 + path: "packages/connectivity_plus/connectivity_plus_platform_interface"
481 + ref: c46ab89942b2be24aedf79555f247c566d99777f
482 + resolved-ref: c46ab89942b2be24aedf79555f247c566d99777f
483 + url: "https://github.com/fluttercommunity/plus_plugins"
484 + source: git
485 + version: "2.1.0"
486 + console:
487 + dependency: "direct overridden"
488 + description:
489 + path: "."
490 + ref: f391b6d289490e1735566c63fe539d1c3fc40818
491 + resolved-ref: f391b6d289490e1735566c63fe539d1c3fc40818
492 + url: "https://github.com/DirectMyFile/console.dart"
493 + source: git
494 + version: "4.1.0"
495 + convert:
496 + dependency: "direct overridden"
497 + description:
498 + path: "pkgs/convert"
499 + ref: "16f396fcf87da1db940187db3564b3a490015678"
500 + resolved-ref: "16f396fcf87da1db940187db3564b3a490015678"
501 + url: "https://github.com/dart-lang/core"
502 + source: git
503 + version: "3.1.2"
504 + coverage:
505 + dependency: "direct overridden"
506 + description:
507 + path: "pkgs/coverage"
508 + ref: "176ad7aea84d9fccc5c17795568ea2165a0414f9"
509 + resolved-ref: "176ad7aea84d9fccc5c17795568ea2165a0414f9"
510 + url: "https://github.com/dart-lang/tools"
511 + source: git
512 + version: "1.15.1"
513 + cross_file:
514 + dependency: "direct overridden"
515 + description:
516 + path: "packages/cross_file"
517 + ref: b967797f07f1e4fc4fb264f5c8e5181b1385d9d9
518 + resolved-ref: b967797f07f1e4fc4fb264f5c8e5181b1385d9d9
519 + url: "https://github.com/flutter/packages"
520 + source: git
521 + version: "0.3.5+4"
522 + crypto:
523 + dependency: "direct main"
524 + description:
525 + path: "pkgs/crypto"
526 + ref: e6c3810cdbbd6b483973f4685e950644114b495e
527 + resolved-ref: e6c3810cdbbd6b483973f4685e950644114b495e
528 + url: "https://github.com/dart-lang/core"
529 + source: git
530 + version: "3.0.7"
531 + cryptography:
532 + dependency: "direct main"
533 + description:
534 + path: cryptography
535 + ref: "87f42fad6f7f120feb8e47854164016ceac3dfd0"
536 + resolved-ref: "87f42fad6f7f120feb8e47854164016ceac3dfd0"
537 + url: "https://github.com/dint-dev/cryptography"
538 + source: git
539 + version: "2.9.0"
540 + csslib:
541 + dependency: "direct overridden"
542 + description:
543 + path: "pkgs/csslib"
544 + ref: "91a840b6bc02e5e4b57fb55a047267923b894c89"
545 + resolved-ref: "91a840b6bc02e5e4b57fb55a047267923b894c89"
546 + url: "https://github.com/dart-lang/tools"
547 + source: git
548 + version: "1.0.2"
549 + cupertino_icons:
550 + dependency: "direct main"
551 + description:
552 + path: "third_party/packages/cupertino_icons"
553 + ref: f330175dbf168a7bf94a127c492e025b4cc0bfba
554 + resolved-ref: f330175dbf168a7bf94a127c492e025b4cc0bfba
555 + url: "https://github.com/flutter/packages"
556 + source: git
557 + version: "1.0.9"
558 + cw_bitcoin:
559 + dependency: "direct main"
560 + description:
561 + path: cw_bitcoin
562 + relative: true
563 + source: path
564 + version: "0.0.1"
565 + cw_bitcoin_cash:
566 + dependency: "direct main"
567 + description:
568 + path: cw_bitcoin_cash
569 + relative: true
570 + source: path
571 + version: "0.0.1"
572 + cw_core:
573 + dependency: "direct main"
574 + description:
575 + path: cw_core
576 + relative: true
577 + source: path
578 + version: "0.0.1"
579 + cw_decred:
580 + dependency: "direct main"
581 + description:
582 + path: cw_decred
583 + relative: true
584 + source: path
585 + version: "0.0.1"
586 + cw_dogecoin:
587 + dependency: "direct main"
588 + description:
589 + path: cw_dogecoin
590 + relative: true
591 + source: path
592 + version: "0.0.1"
593 + cw_evm:
594 + dependency: "direct main"
595 + description:
596 + path: cw_evm
597 + relative: true
598 + source: path
599 + version: "0.0.1"
600 + cw_monero:
601 + dependency: "direct main"
602 + description:
603 + path: cw_monero
604 + relative: true
605 + source: path
606 + version: "0.0.1"
607 + cw_mweb:
608 + dependency: transitive
609 + description:
610 + path: cw_mweb
611 + relative: true
612 + source: path
613 + version: "0.0.1"
614 + cw_nano:
615 + dependency: "direct main"
616 + description:
617 + path: cw_nano
618 + relative: true
619 + source: path
620 + version: "0.0.1"
621 + cw_solana:
622 + dependency: "direct main"
623 + description:
624 + path: cw_solana
625 + relative: true
626 + source: path
627 + version: "0.0.1"
628 + cw_tron:
629 + dependency: "direct main"
630 + description:
631 + path: cw_tron
632 + relative: true
633 + source: path
634 + version: "0.0.1"
635 + cw_wownero:
636 + dependency: "direct main"
637 + description:
638 + path: cw_wownero
639 + relative: true
640 + source: path
641 + version: "0.0.1"
642 + cw_zano:
643 + dependency: "direct main"
644 + description:
645 + path: cw_zano
646 + relative: true
647 + source: path
648 + version: "0.0.1"
649 + cw_zcash:
650 + dependency: "direct main"
651 + description:
652 + path: cw_zcash
653 + relative: true
654 + source: path
655 + version: "1.0.0"
656 + dart_style:
657 + dependency: "direct overridden"
658 + description:
659 + path: "."
660 + ref: a0f21e86a7a0ba52f11f46e3ed2ad1144616b512
661 + resolved-ref: a0f21e86a7a0ba52f11f46e3ed2ad1144616b512
662 + url: "https://github.com/dart-lang/dart_style"
663 + source: git
664 + version: "3.1.7"
665 + dart_varuint_bitcoin:
666 + dependency: "direct overridden"
667 + description:
668 + path: "."
669 + ref: "51f9656d5937659c9f034cb0910dd0144459f137"
670 + resolved-ref: "51f9656d5937659c9f034cb0910dd0144459f137"
671 + url: "https://github.com/dart-bitcoin-lib/dart-varuint-bitcoin"
672 + source: git
673 + version: "1.0.3"
674 + data_table_2:
675 + dependency: "direct overridden"
676 + description:
677 + path: "."
678 + ref: "4db30aa145e4e831e5527708cf77d9ed4d8e9700"
679 + resolved-ref: "4db30aa145e4e831e5527708cf77d9ed4d8e9700"
680 + url: "https://github.com/maxim-saplin/data_table_2"
681 + source: git
682 + version: "2.7.2"
683 + dbus:
684 + dependency: "direct overridden"
685 + description:
686 + path: "."
687 + ref: "2db8509d7f7081025e7246511e823287fdd09abc"
688 + resolved-ref: "2db8509d7f7081025e7246511e823287fdd09abc"
689 + url: "https://github.com/canonical/dbus.dart"
690 + source: git
691 + version: "0.7.12"
692 + decimal:
693 + dependency: "direct overridden"
694 + description:
695 + path: "."
696 + ref: bc9771127e4c26f068fc9b016269f0ddabe9b475
697 + resolved-ref: bc9771127e4c26f068fc9b016269f0ddabe9b475
698 + url: "https://github.com/a14n/dart-decimal"
699 + source: git
700 + version: "2.3.3"
701 + device_display_brightness:
702 + dependency: "direct main"
703 + description:
704 + path: "."
705 + ref: "4cac18c446ce686f3d75b1565badbd7da439bbd9"
706 + resolved-ref: "4cac18c446ce686f3d75b1565badbd7da439bbd9"
707 + url: "https://github.com/MrCyjaneK/device_display_brightness.git"
708 + source: git
709 + version: "0.0.6"
710 + device_info_plus:
711 + dependency: "direct main"
712 + description:
713 + path: "packages/device_info_plus/device_info_plus"
714 + ref: "83f86a357da31c7e9c47ee668fe3142bafea9c91"
715 + resolved-ref: "83f86a357da31c7e9c47ee668fe3142bafea9c91"
716 + url: "https://github.com/fluttercommunity/plus_plugins"
717 + source: git
718 + version: "9.1.2"
719 + device_info_plus_platform_interface:
720 + dependency: "direct overridden"
721 + description:
722 + path: "packages/device_info_plus/device_info_plus_platform_interface"
723 + ref: "1b37ba220c99b16693991042c3fcc69eae98864a"
724 + resolved-ref: "1b37ba220c99b16693991042c3fcc69eae98864a"
725 + url: "https://github.com/fluttercommunity/plus_plugins"
726 + source: git
727 + version: "7.0.3"
728 + devicelocale:
729 + dependency: "direct main"
730 + description:
731 + path: "."
732 + ref: "3ed4bcc443a40da200af162f4b97d63d7b00d291"
733 + resolved-ref: "3ed4bcc443a40da200af162f4b97d63d7b00d291"
734 + url: "https://github.com/magnatronus/flutter-devicelocale"
735 + source: git
736 + version: "0.8.1"
737 + dio:
738 + dependency: "direct main"
739 + description:
740 + path: dio
741 + ref: ef9dbb860c085a8e81ecd36d5bcf29d5672947e1
742 + resolved-ref: ef9dbb860c085a8e81ecd36d5bcf29d5672947e1
743 + url: "https://github.com/cfug/dio"
744 + source: git
745 + version: "5.11.0"
746 + dio_web_adapter:
747 + dependency: "direct overridden"
748 + description:
749 + path: "plugins/web_adapter"
750 + ref: f72e83c8e832e81169f621b13c9e39aeaf9286b8
751 + resolved-ref: f72e83c8e832e81169f621b13c9e39aeaf9286b8
752 + url: "https://github.com/cfug/dio"
753 + source: git
754 + version: "2.2.1"
755 + dnssec_proof:
756 + dependency: "direct main"
757 + description:
758 + path: "."
759 + ref: b48a9defddce036048bae02e2069ebcbd6824afc
760 + resolved-ref: b48a9defddce036048bae02e2069ebcbd6824afc
761 + url: "https://github.com/MrCyjaneK/dnssec_proof.git"
762 + source: git
763 + version: "0.0.1"
764 + dotenv:
765 + dependency: "direct overridden"
766 + description:
767 + path: "."
768 + ref: "08216384e8a03b0aa55e0fcb81f4d03a52f7ea76"
769 + resolved-ref: "08216384e8a03b0aa55e0fcb81f4d03a52f7ea76"
770 + url: "https://github.com/mockturtl/dotenv"
771 + source: git
772 + version: "3.0.0"
773 + dotted_border:
774 + dependency: "direct main"
775 + description:
776 + path: "."
777 + ref: a0168f4a4d410087afb378a06deb058cb92a9fb1
778 + resolved-ref: a0168f4a4d410087afb378a06deb058cb92a9fb1
779 + url: "https://github.com/ajilo297/Flutter-Dotted-Border"
780 + source: git
781 + version: "2.1.0"
782 + easy_debounce:
783 + dependency: "direct overridden"
784 + description:
785 + path: "."
786 + ref: ed3f2aff0f080aa21cecd86e3a7c108340a9f17d
787 + resolved-ref: ed3f2aff0f080aa21cecd86e3a7c108340a9f17d
788 + url: "https://github.com/magnuswikhog/easy_debounce"
789 + source: git
790 + version: "2.0.3"
791 + easy_stepper:
792 + dependency: "direct overridden"
793 + description:
794 + path: "."
795 + ref: cec4390aef9e5ff9fe064a44ed06b4f2c6dae1d2
796 + resolved-ref: cec4390aef9e5ff9fe064a44ed06b4f2c6dae1d2
797 + url: "https://github.com/ma7moud3osman/easy_stepper"
798 + source: git
799 + version: "0.8.5+1"
800 + ed25519_edwards:
801 + dependency: "direct overridden"
802 + description:
803 + path: "."
804 + ref: "944daea677c4d7f3abea608f55b34aec93bb79fb"
805 + resolved-ref: "944daea677c4d7f3abea608f55b34aec93bb79fb"
806 + url: "https://github.com/Tougee/ed25519"
807 + source: git
808 + version: "0.3.1"
809 + ed25519_hd_key:
810 + dependency: "direct overridden"
811 + description:
812 + path: "."
813 + ref: be3939527511af23dbfd97b5abde56215a5ce60d
814 + resolved-ref: be3939527511af23dbfd97b5abde56215a5ce60d
815 + url: "https://github.com/alepop/dart-ed25519-hd-key"
816 + source: git
817 + version: "2.3.0"
818 + eip1559:
819 + dependency: "direct overridden"
820 + description:
821 + path: "."
822 + ref: d1888bf05e99cca1638e7fcc10d7f82d21857f9a
823 + resolved-ref: d1888bf05e99cca1638e7fcc10d7f82d21857f9a
824 + url: "https://github.com/xclud/dart_eip1559"
825 + source: git
826 + version: "0.6.2"
827 + eip55:
828 + dependency: "direct overridden"
829 + description:
830 + path: "."
831 + ref: "1dd7172b6d8f7e21f11378a4bf3489a8d1ff890f"
832 + resolved-ref: "1dd7172b6d8f7e21f11378a4bf3489a8d1ff890f"
833 + url: "https://github.com/xclud/dart_eip55"
834 + source: git
835 + version: "1.0.2"
836 + encrypt:
837 + dependency: "direct main"
838 + description:
839 + path: "."
840 + ref: "8581b81c060cde1c531e35a6eaa4b7324e9ab813"
841 + resolved-ref: "8581b81c060cde1c531e35a6eaa4b7324e9ab813"
842 + url: "https://github.com/leocavalcante/encrypt"
843 + source: git
844 + version: "5.0.2"
845 + ens_dart:
846 + dependency: "direct main"
847 + description:
848 + path: "."
849 + ref: "9fa09b9db69b8645d5d50a844652aa570451d101"
850 + resolved-ref: "9fa09b9db69b8645d5d50a844652aa570451d101"
851 + url: "https://github.com/cake-tech/ens_dart.git"
852 + source: git
853 + version: "1.0.0"
854 + equatable:
855 + dependency: "direct main"
856 + description:
857 + path: "."
858 + ref: f98a58960545ba72b51d0eacf746af393a0c6b24
859 + resolved-ref: f98a58960545ba72b51d0eacf746af393a0c6b24
860 + url: "https://github.com/felangel/equatable"
861 + source: git
862 + version: "2.1.0"
863 + erc20:
864 + dependency: "direct overridden"
865 + description:
866 + path: "."
867 + ref: "759c4363d1dc9d6a3c2604ceb4261b5bcdfc68b1"
868 + resolved-ref: "759c4363d1dc9d6a3c2604ceb4261b5bcdfc68b1"
869 + url: "https://github.com/xclud/dart_erc20"
870 + source: git
871 + version: "1.0.1"
872 + eth_sig_util:
873 + dependency: "direct main"
874 + description:
875 + path: "."
876 + ref: "6acd66a126f470b5541f089fdd1c079d35a59c9a"
877 + resolved-ref: "6acd66a126f470b5541f089fdd1c079d35a59c9a"
878 + url: "https://github.com/wakumo/eth-sig-util"
879 + source: git
880 + version: "0.0.9"
881 + event:
882 + dependency: "direct overridden"
883 + description:
884 + path: "."
885 + ref: "93e1c474cf736481a0ef07c15a8c8bbdc5f21b60"
886 + resolved-ref: "93e1c474cf736481a0ef07c15a8c8bbdc5f21b60"
887 + url: "https://github.com/aryehof/dart-event"
888 + source: git
889 + version: "3.1.0"
890 + fake_async:
891 + dependency: "direct overridden"
892 + description:
893 + path: "pkgs/fake_async"
894 + ref: "82417ab30b95ff471ded4bf6a3eea005ca97774f"
895 + resolved-ref: "82417ab30b95ff471ded4bf6a3eea005ca97774f"
896 + url: "https://github.com/dart-lang/test"
897 + source: git
898 + version: "1.3.3"
899 + fast_base58:
900 + dependency: "direct overridden"
901 + description:
902 + path: "."
903 + ref: "46955c19e499ce5c15755f6f573479d5f5218a45"
904 + resolved-ref: "46955c19e499ce5c15755f6f573479d5f5218a45"
905 + url: "https://github.com/maoxs2/dart_fast_base58"
906 + source: git
907 + version: "0.2.2"
908 + fast_scanner:
909 + dependency: "direct main"
910 + description:
911 + path: "."
912 + ref: "69b3276b090fa6ac01b4483ca3adca93a8e615be"
913 + resolved-ref: "69b3276b090fa6ac01b4483ca3adca93a8e615be"
914 + url: "https://github.com/MrCyjaneK/fast_scanner"
915 + source: git
916 + version: "5.1.1"
917 + ffi:
918 + dependency: "direct overridden"
919 + description:
920 + path: "pkgs/ffi"
921 + ref: "6bd0935f29c7294ebb9aab21c06b47b513def933"
922 + resolved-ref: "6bd0935f29c7294ebb9aab21c06b47b513def933"
923 + url: "https://github.com/dart-lang/native"
924 + source: git
925 + version: "2.1.0"
926 + ffigen:
927 + dependency: "direct overridden"
928 + description:
929 + path: "pkgs/ffigen"
930 + ref: c837526da8808501b53255caea0364eaa2c84afb
931 + resolved-ref: c837526da8808501b53255caea0364eaa2c84afb
932 + url: "https://github.com/dart-lang/native"
933 + source: git
934 + version: "12.0.0"
935 + file:
936 + dependency: "direct overridden"
937 + description:
938 + path: "pkgs/file"
939 + ref: "3f7a46606496f826c2f60586ab71c2b7a9bfbf15"
940 + resolved-ref: "3f7a46606496f826c2f60586ab71c2b7a9bfbf15"
941 + url: "https://github.com/dart-lang/tools"
942 + source: git
943 + version: "7.0.1"
944 + file_picker:
945 + dependency: "direct main"
946 + description:
947 + path: "."
948 + ref: c414574bc5ac349450f601e7f72c7b9f31b4d087
949 + resolved-ref: c414574bc5ac349450f601e7f72c7b9f31b4d087
950 + url: "https://github.com/cake-tech/flutter_file_picker.git"
951 + source: git
952 + version: "8.1.6"
953 + file_selector_linux:
954 + dependency: "direct overridden"
955 + description:
956 + path: "packages/file_selector/file_selector_linux"
957 + ref: e67b6be3f57927f6831ec41afd3444adb31be3d3
958 + resolved-ref: e67b6be3f57927f6831ec41afd3444adb31be3d3
959 + url: "https://github.com/flutter/packages"
960 + source: git
961 + version: "0.9.4"
962 + file_selector_macos:
963 + dependency: "direct overridden"
964 + description:
965 + path: "packages/file_selector/file_selector_macos"
966 + ref: e67b6be3f57927f6831ec41afd3444adb31be3d3
967 + resolved-ref: e67b6be3f57927f6831ec41afd3444adb31be3d3
968 + url: "https://github.com/flutter/packages"
969 + source: git
970 + version: "0.9.5"
971 + file_selector_platform_interface:
972 + dependency: "direct overridden"
973 + description:
974 + path: "packages/file_selector/file_selector_platform_interface"
975 + ref: "29211e8b56107f477d4521dd30e8ad713007860e"
976 + resolved-ref: "29211e8b56107f477d4521dd30e8ad713007860e"
977 + url: "https://github.com/flutter/packages"
978 + source: git
979 + version: "2.7.0"
980 + file_selector_windows:
981 + dependency: "direct overridden"
982 + description:
983 + path: "packages/file_selector/file_selector_windows"
984 + ref: "18b9cc5f2b0820cb6164f0150958ba76db75c61a"
985 + resolved-ref: "18b9cc5f2b0820cb6164f0150958ba76db75c61a"
986 + url: "https://github.com/flutter/packages"
987 + source: git
988 + version: "0.9.3+5"
989 + fixed:
990 + dependency: "direct overridden"
991 + description:
992 + path: "."
993 + ref: "1bdd715b95d8ed9c7fdffa6735bdcf2bf5ff8e65"
994 + resolved-ref: "1bdd715b95d8ed9c7fdffa6735bdcf2bf5ff8e65"
995 + url: "https://github.com/onepub-dev/fixed"
996 + source: git
997 + version: "5.3.4"
998 + fixnum:
999 + dependency: "direct overridden"
1000 + description:
1001 + path: "pkgs/fixnum"
1002 + ref: "17d1b2cd13991f3cf844886db1c7ad18910a8908"
1003 + resolved-ref: "17d1b2cd13991f3cf844886db1c7ad18910a8908"
1004 + url: "https://github.com/dart-lang/core"
1005 + source: git
1006 + version: "1.1.1"
1007 + fixnum_nanodart:
1008 + dependency: "direct overridden"
1009 + description:
1010 + path: "."
1011 + ref: "332e879371f175b52f688383d6ff795609aece85"
1012 + resolved-ref: "332e879371f175b52f688383d6ff795609aece85"
1013 + url: "https://github.com/MrCyjaneK/fixnum_nanodart"
1014 + source: git
1015 + version: "1.0.0"
1016 + fl_chart:
1017 + dependency: "direct main"
1018 + description:
1019 + path: "."
1020 + ref: be14b9722b7f18310c869c930562b7871b0165ed
1021 + resolved-ref: be14b9722b7f18310c869c930562b7871b0165ed
1022 + url: "https://github.com/imaNNeo/fl_chart"
1023 + source: git
1024 + version: "0.70.2"
1025 + flat_buffers:
1026 + dependency: "direct overridden"
1027 + description:
1028 + path: dart
1029 + ref: "187240970746d00bbd26b0f5873ed54d2477f9f3"
1030 + resolved-ref: "187240970746d00bbd26b0f5873ed54d2477f9f3"
1031 + url: "https://github.com/google/flatbuffers"
1032 + source: git
1033 + version: "25.9.23"
1034 + flex_color_scheme:
1035 + dependency: "direct overridden"
1036 + description:
1037 + path: "."
1038 + ref: c0e810b1eba7cd2b2be1f5c6130b86672858db3d
1039 + resolved-ref: c0e810b1eba7cd2b2be1f5c6130b86672858db3d
1040 + url: "https://github.com/rydmike/flex_color_scheme"
1041 + source: git
1042 + version: "8.4.0"
1043 + flex_seed_scheme:
1044 + dependency: "direct overridden"
1045 + description:
1046 + path: "."
1047 + ref: aa7be701ad58dc8e61637373db2bef0f28d2606e
1048 + resolved-ref: aa7be701ad58dc8e61637373db2bef0f28d2606e
1049 + url: "https://github.com/rydmike/flex_seed_scheme"
1050 + source: git
1051 + version: "4.0.1"
1052 + flutter:
1053 + dependency: "direct main"
1054 + description: flutter
1055 + source: sdk
1056 + version: "0.0.0"
1057 + flutter_bloc:
1058 + dependency: "direct main"
1059 + description:
1060 + path: "packages/flutter_bloc"
1061 + ref: "59098d33f3eed63001d3170295d2bfa76fa84351"
1062 + resolved-ref: "59098d33f3eed63001d3170295d2bfa76fa84351"
1063 + url: "https://github.com/felangel/bloc"
1064 + source: git
1065 + version: "9.1.1"
1066 + flutter_daemon:
1067 + dependency: "direct main"
1068 + description:
1069 + path: "."
1070 + ref: c24ee99f2f3070ea02d8108bbdd7727d73f7e5f1
1071 + resolved-ref: c24ee99f2f3070ea02d8108bbdd7727d73f7e5f1
1072 + url: "https://github.com/MrCyjaneK/flutter_daemon"
1073 + source: git
1074 + version: "0.0.1"
1075 + flutter_driver:
1076 + dependency: transitive
1077 + description: flutter
1078 + source: sdk
1079 + version: "0.0.0"
1080 + flutter_form_builder:
1081 + dependency: "direct overridden"
1082 + description:
1083 + path: "."
1084 + ref: c55646b1d7f995752dbf5a9bd63da7592d342ffb
1085 + resolved-ref: c55646b1d7f995752dbf5a9bd63da7592d342ffb
1086 + url: "https://github.com/flutter-form-builder-ecosystem/flutter_form_builder"
1087 + source: git
1088 + version: "10.3.0+2"
1089 + flutter_hooks:
1090 + dependency: "direct overridden"
1091 + description:
1092 + path: "packages/flutter_hooks"
1093 + ref: "9a2245f922bbd0ec397562fc7dc4b22b98c9199e"
1094 + resolved-ref: "9a2245f922bbd0ec397562fc7dc4b22b98c9199e"
1095 + url: "https://github.com/rrousselGit/flutter_hooks"
1096 + source: git
1097 + version: "0.21.3+1"
1098 + flutter_inappwebview:
1099 + dependency: "direct main"
1100 + description:
1101 + path: flutter_inappwebview
1102 + ref: f67ae1f34868c7660c16a2473f53a7a7bfb6f784
1103 + resolved-ref: f67ae1f34868c7660c16a2473f53a7a7bfb6f784
1104 + url: "https://github.com/pichillilorenzo/flutter_inappwebview"
1105 + source: git
1106 + version: "6.1.5"
1107 + flutter_inappwebview_android:
1108 + dependency: "direct overridden"
1109 + description:
1110 + path: flutter_inappwebview_android
1111 + ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
1112 + resolved-ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
1113 + url: "https://github.com/pichillilorenzo/flutter_inappwebview"
1114 + source: git
1115 + version: "1.1.3"
1116 + flutter_inappwebview_internal_annotations:
1117 + dependency: "direct overridden"
1118 + description:
1119 + path: "dev_packages/flutter_inappwebview_internal_annotations"
1120 + ref: "5be1ade739ab2a385e94a1bd5936c5a2000d52a9"
1121 + resolved-ref: "5be1ade739ab2a385e94a1bd5936c5a2000d52a9"
1122 + url: "https://github.com/pichillilorenzo/flutter_inappwebview"
1123 + source: git
1124 + version: "1.3.0"
1125 + flutter_inappwebview_ios:
1126 + dependency: "direct overridden"
1127 + description:
1128 + path: flutter_inappwebview_ios
1129 + ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
1130 + resolved-ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
1131 + url: "https://github.com/pichillilorenzo/flutter_inappwebview"
1132 + source: git
1133 + version: "1.1.2"
1134 + flutter_inappwebview_macos:
1135 + dependency: "direct overridden"
1136 + description:
1137 + path: flutter_inappwebview_macos
1138 + ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
1139 + resolved-ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
1140 + url: "https://github.com/pichillilorenzo/flutter_inappwebview"
1141 + source: git
1142 + version: "1.1.2"
1143 + flutter_inappwebview_platform_interface:
1144 + dependency: "direct overridden"
1145 + description:
1146 + path: flutter_inappwebview_platform_interface
1147 + ref: "60f1012e804f785421878ba1ee34403458e6baf2"
1148 + resolved-ref: "60f1012e804f785421878ba1ee34403458e6baf2"
1149 + url: "https://github.com/pichillilorenzo/flutter_inappwebview"
1150 + source: git
1151 + version: "1.3.0+1"
1152 + flutter_inappwebview_web:
1153 + dependency: "direct overridden"
1154 + description:
1155 + path: flutter_inappwebview_web
1156 + ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
1157 + resolved-ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
1158 + url: "https://github.com/pichillilorenzo/flutter_inappwebview"
1159 + source: git
1160 + version: "1.1.2"
1161 + flutter_inappwebview_windows:
1162 + dependency: "direct overridden"
1163 + description:
1164 + path: flutter_inappwebview_windows
1165 + ref: "952aa783912c9b0fd98d01e3c2c707d97512cd63"
1166 + resolved-ref: "952aa783912c9b0fd98d01e3c2c707d97512cd63"
1167 + url: "https://github.com/pichillilorenzo/flutter_inappwebview"
1168 + source: git
1169 + version: "0.6.0"
1170 + flutter_local_authentication:
1171 + dependency: "direct main"
1172 + description:
1173 + path: "."
1174 + ref: "75c8681ebef62398a87c8ae0cccb7cfddffa9734"
1175 + resolved-ref: "75c8681ebef62398a87c8ae0cccb7cfddffa9734"
1176 + url: "https://github.com/cake-tech/flutter_local_authentication"
1177 + source: git
1178 + version: "1.2.0"
1179 + flutter_local_notifications:
1180 + dependency: "direct main"
1181 + description:
1182 + path: flutter_local_notifications
1183 + ref: "6c7378ddb1ed7f885e1e80caa3df3bcfb0fe8707"
1184 + resolved-ref: "6c7378ddb1ed7f885e1e80caa3df3bcfb0fe8707"
1185 + url: "https://github.com/MaikuB/flutter_local_notifications"
1186 + source: git
1187 + version: "19.5.0"
1188 + flutter_local_notifications_linux:
1189 + dependency: "direct overridden"
1190 + description:
1191 + path: flutter_local_notifications_linux
1192 + ref: "314b432f98bcaef768468e5755317e10213a59bf"
1193 + resolved-ref: "314b432f98bcaef768468e5755317e10213a59bf"
1194 + url: "https://github.com/MaikuB/flutter_local_notifications"
1195 + source: git
1196 + version: "6.0.0"
1197 + flutter_local_notifications_platform_interface:
1198 + dependency: "direct overridden"
1199 + description:
1200 + path: flutter_local_notifications_platform_interface
1201 + ref: "816a1ddbf733bba3fb8d87ac3a9c2673ec15881b"
1202 + resolved-ref: "816a1ddbf733bba3fb8d87ac3a9c2673ec15881b"
1203 + url: "https://github.com/MaikuB/flutter_local_notifications"
1204 + source: git
1205 + version: "9.1.0"
1206 + flutter_local_notifications_windows:
1207 + dependency: "direct overridden"
1208 + description:
1209 + path: flutter_local_notifications_windows
1210 + ref: ecd66b1515d17e327a62ca4ff8e94f925e97d688
1211 + resolved-ref: ecd66b1515d17e327a62ca4ff8e94f925e97d688
1212 + url: "https://github.com/MaikuB/flutter_local_notifications"
1213 + source: git
1214 + version: "1.0.3"
1215 + flutter_localizations:
1216 + dependency: "direct main"
1217 + description: flutter
1218 + source: sdk
1219 + version: "0.0.0"
1220 + flutter_mailer:
1221 + dependency: "direct main"
1222 + description:
1223 + path: "."
1224 + ref: "9c4ed111a9151a2bbfb9afe2c18a37599c6f84f3"
1225 + resolved-ref: "9c4ed111a9151a2bbfb9afe2c18a37599c6f84f3"
1226 + url: "https://github.com/taljacobson/flutter_mailer"
1227 + source: git
1228 + version: "3.0.0"
1229 + flutter_mobx:
1230 + dependency: "direct main"
1231 + description:
1232 + path: flutter_mobx
1233 + ref: "0cadcd03551baaae57788b7288e1245e6408d5cf"
1234 + resolved-ref: "0cadcd03551baaae57788b7288e1245e6408d5cf"
1235 + url: "https://github.com/mobxjs/mobx.dart"
1236 + source: git
1237 + version: "2.3.0"
1238 + flutter_native_splash:
1239 + dependency: "direct overridden"
1240 + description:
1241 + path: "."
1242 + ref: "8c65117f0a4adc04f93deeb595a699a0d6dac559"
1243 + resolved-ref: "8c65117f0a4adc04f93deeb595a699a0d6dac559"
1244 + url: "https://github.com/jonbhanson/flutter_native_splash"
1245 + source: git
1246 + version: "2.4.6"
1247 + flutter_plugin_android_lifecycle:
1248 + dependency: "direct main"
1249 + description:
1250 + path: "packages/flutter_plugin_android_lifecycle"
1251 + ref: "4afc383a6db56cb969af5d8ad02a1a0220758b66"
1252 + resolved-ref: "4afc383a6db56cb969af5d8ad02a1a0220758b66"
1253 + url: "https://github.com/flutter/packages"
1254 + source: git
1255 + version: "2.0.23"
1256 + flutter_riverpod:
1257 + dependency: "direct overridden"
1258 + description:
1259 + path: "packages/flutter_riverpod"
1260 + ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
1261 + resolved-ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
1262 + url: "https://github.com/rrousselGit/riverpod"
1263 + source: git
1264 + version: "3.3.2"
1265 + flutter_rust_bridge:
1266 + dependency: "direct overridden"
1267 + description:
1268 + path: frb_dart
1269 + ref: f19087cd0cac019b82d52cfa5153ce81b1b6e902
1270 + resolved-ref: f19087cd0cac019b82d52cfa5153ce81b1b6e902
1271 + url: "https://github.com/fzyzcjy/flutter_rust_bridge"
1272 + source: git
1273 + version: "2.11.1"
1274 + flutter_secure_storage:
1275 + dependency: "direct main"
1276 + description:
1277 + path: flutter_secure_storage
1278 + ref: ca897a08677edb443b366352dd7412735e098e7b
1279 + resolved-ref: ca897a08677edb443b366352dd7412735e098e7b
1280 + url: "https://github.com/cake-tech/flutter_secure_storage.git"
1281 + source: git
1282 + version: "8.1.0"
1283 + flutter_secure_storage_linux:
1284 + dependency: "direct overridden"
1285 + description:
1286 + path: flutter_secure_storage_linux
1287 + ref: "1355e56cd48404fdbb0848979de72ee317b0c6c9"
1288 + resolved-ref: "1355e56cd48404fdbb0848979de72ee317b0c6c9"
1289 + url: "https://github.com/mogol/flutter_secure_storage"
1290 + source: git
1291 + version: "1.2.3"
1292 + flutter_secure_storage_macos:
1293 + dependency: "direct overridden"
1294 + description:
1295 + path: flutter_secure_storage_macos
1296 + ref: ca897a08677edb443b366352dd7412735e098e7b
1297 + resolved-ref: ca897a08677edb443b366352dd7412735e098e7b
1298 + url: "https://github.com/cake-tech/flutter_secure_storage.git"
1299 + source: git
1300 + version: "3.0.0"
1301 + flutter_secure_storage_platform_interface:
1302 + dependency: "direct overridden"
1303 + description:
1304 + path: flutter_secure_storage_platform_interface
1305 + ref: "3d5466cc3b93196bc9d8287f67f85a45ab6ebd3e"
1306 + resolved-ref: "3d5466cc3b93196bc9d8287f67f85a45ab6ebd3e"
1307 + url: "https://github.com/mogol/flutter_secure_storage"
1308 + source: git
1309 + version: "1.1.2"
1310 + flutter_secure_storage_web:
1311 + dependency: "direct overridden"
1312 + description:
1313 + path: flutter_secure_storage_web
1314 + ref: "62cb9ec42b78fca2a1e64d729423367735134c11"
1315 + resolved-ref: "62cb9ec42b78fca2a1e64d729423367735134c11"
1316 + url: "https://github.com/mogol/flutter_secure_storage"
1317 + source: git
1318 + version: "1.2.1"
1319 + flutter_secure_storage_windows:
1320 + dependency: "direct overridden"
1321 + description:
1322 + path: flutter_secure_storage_windows
1323 + ref: "908d3f3f5fb1ba90927ceebde8b253f413f833d7"
1324 + resolved-ref: "908d3f3f5fb1ba90927ceebde8b253f413f833d7"
1325 + url: "https://github.com/mogol/flutter_secure_storage"
1326 + source: git
1327 + version: "3.1.2"
1328 + flutter_shaders:
1329 + dependency: "direct overridden"
1330 + description:
1331 + path: "."
1332 + ref: e331377d58755fe914a2ce54b0f70ba34898dfdd
1333 + resolved-ref: e331377d58755fe914a2ce54b0f70ba34898dfdd
1334 + url: "https://github.com/jonahwilliams/flutter_shaders"
1335 + source: git
1336 + version: "0.1.3"
1337 + flutter_slidable:
1338 + dependency: "direct main"
1339 + description:
1340 + path: "."
1341 + ref: "7dbeb6667bf410d9a8401f0f8412e14669e7338f"
1342 + resolved-ref: "7dbeb6667bf410d9a8401f0f8412e14669e7338f"
1343 + url: "https://github.com/letsar/flutter_slidable"
1344 + source: git
1345 + version: "3.1.2"
1346 + flutter_spinkit:
1347 + dependency: "direct main"
1348 + description:
1349 + path: "."
1350 + ref: bf8508db798f1e31dea152b9b762f223d90d3449
1351 + resolved-ref: bf8508db798f1e31dea152b9b762f223d90d3449
1352 + url: "https://github.com/jogboms/flutter_spinkit"
1353 + source: git
1354 + version: "5.2.2"
1355 + flutter_svg:
1356 + dependency: "direct main"
1357 + description:
1358 + path: "third_party/packages/flutter_svg"
1359 + ref: ddc9430a0080bea73c5511732f396acde1f48fe0
1360 + resolved-ref: ddc9430a0080bea73c5511732f396acde1f48fe0
1361 + url: "https://github.com/flutter/packages"
1362 + source: git
1363 + version: "2.3.0"
1364 + flutter_test:
1365 + dependency: "direct dev"
1366 + description: flutter
1367 + source: sdk
1368 + version: "0.0.0"
1369 + flutter_web_bluetooth:
1370 + dependency: "direct overridden"
1371 + description:
1372 + path: "."
1373 + ref: "82d12cda1b65efc1d96b53b27b8b5451e34c96ef"
1374 + resolved-ref: "82d12cda1b65efc1d96b53b27b8b5451e34c96ef"
1375 + url: "https://github.com/jeroen1602/flutter_web_bluetooth"
1376 + source: git
1377 + version: "1.1.0"
1378 + flutter_web_plugins:
1379 + dependency: transitive
1380 + description: flutter
1381 + source: sdk
1382 + version: "0.0.0"
1383 + fluttertoast:
1384 + dependency: "direct main"
1385 + description:
1386 + path: "."
1387 + ref: e875d071da02fe6f3090794d1ac623093c3b7074
1388 + resolved-ref: e875d071da02fe6f3090794d1ac623093c3b7074
1389 + url: "https://github.com/PonnamKarthik/FlutterToast"
1390 + source: git
1391 + version: "8.2.12"
1392 + form_builder_validators:
1393 + dependency: "direct overridden"
1394 + description:
1395 + path: "."
1396 + ref: "7a561b8aff3739d80c54c394f9b0cc9c861a01b8"
1397 + resolved-ref: "7a561b8aff3739d80c54c394f9b0cc9c861a01b8"
1398 + url: "https://github.com/flutter-form-builder-ecosystem/form_builder_validators"
1399 + source: git
1400 + version: "11.3.0"
1401 + freezed_annotation:
1402 + dependency: "direct overridden"
1403 + description:
1404 + path: "packages/freezed_annotation"
1405 + ref: "4f7c141c6d2573622b5ea29fe305a8f08db1483b"
1406 + resolved-ref: "4f7c141c6d2573622b5ea29fe305a8f08db1483b"
1407 + url: "https://github.com/rrousselGit/freezed"
1408 + source: git
1409 + version: "2.4.4"
1410 + frontend_server_client:
1411 + dependency: "direct overridden"
1412 + description:
1413 + path: frontend_server_client
1414 + ref: "74e95837adf3d4ea64a003ccc4f8f09704c1d866"
1415 + resolved-ref: "74e95837adf3d4ea64a003ccc4f8f09704c1d866"
1416 + url: "https://github.com/dart-lang/webdev"
1417 + source: git
1418 + version: "4.0.0"
1419 + fuchsia_remote_debug_protocol:
1420 + dependency: transitive
1421 + description: flutter
1422 + source: sdk
1423 + version: "0.0.0"
1424 + gap:
1425 + dependency: "direct overridden"
1426 + description:
1427 + path: "."
1428 + ref: b385a5888b1582badf22bbd93283ec22de8a75d7
1429 + resolved-ref: b385a5888b1582badf22bbd93283ec22de8a75d7
1430 + url: "https://github.com/letsar/gap"
1431 + source: git
1432 + version: "3.0.1"
1433 + get_it:
1434 + dependency: "direct main"
1435 + description:
1436 + path: "."
1437 + ref: "974c0b367c58fd75e78f0d036147a6963392f975"
1438 + resolved-ref: "974c0b367c58fd75e78f0d036147a6963392f975"
1439 + url: "https://github.com/fluttercommunity/get_it"
1440 + source: git
1441 + version: "7.7.0"
1442 + glob:
1443 + dependency: "direct overridden"
1444 + description:
1445 + path: "pkgs/glob"
1446 + ref: "92114ab8a16eef77be1cd7bad3f5af28b5b1dc63"
1447 + resolved-ref: "92114ab8a16eef77be1cd7bad3f5af28b5b1dc63"
1448 + url: "https://github.com/dart-lang/tools"
1449 + source: git
1450 + version: "2.1.3"
1451 + go_router:
1452 + dependency: "direct overridden"
1453 + description:
1454 + path: "packages/go_router"
1455 + ref: "6d191c59e6f31c0133955c88bede437745659452"
1456 + resolved-ref: "6d191c59e6f31c0133955c88bede437745659452"
1457 + url: "https://github.com/flutter/packages"
1458 + source: git
1459 + version: "14.8.1"
1460 + google_identity_services_web:
1461 + dependency: "direct overridden"
1462 + description:
1463 + path: "packages/google_identity_services_web"
1464 + ref: "41211cf4c9a801f8d8ad527e54062d457a7cfbff"
1465 + resolved-ref: "41211cf4c9a801f8d8ad527e54062d457a7cfbff"
1466 + url: "https://github.com/flutter/packages"
1467 + source: git
1468 + version: "0.3.3+1"
1469 + googleapis_auth:
1470 + dependency: "direct overridden"
1471 + description:
1472 + path: googleapis_auth
1473 + ref: "1631558038c7e30511295512527d8ade2bd64c40"
1474 + resolved-ref: "1631558038c7e30511295512527d8ade2bd64c40"
1475 + url: "https://github.com/google/googleapis.dart"
1476 + source: git
1477 + version: "1.6.0"
1478 + graphs:
1479 + dependency: "direct overridden"
1480 + description:
1481 + path: "pkgs/graphs"
1482 + ref: "55dbd6e09042bc1b935c019d8e70b3f41e6b90ea"
1483 + resolved-ref: "55dbd6e09042bc1b935c019d8e70b3f41e6b90ea"
1484 + url: "https://github.com/dart-lang/tools"
1485 + source: git
1486 + version: "2.3.2"
1487 + grpc:
1488 + dependency: "direct overridden"
1489 + description:
1490 + path: "."
1491 + ref: "4f6fe9b1114aa5bd9d97e5d3b5ae2cb354804a1f"
1492 + resolved-ref: "4f6fe9b1114aa5bd9d97e5d3b5ae2cb354804a1f"
1493 + url: "https://github.com/grpc/grpc-dart"
1494 + source: git
1495 + version: "4.0.1"
1496 + hashlib:
1497 + dependency: "direct main"
1498 + description:
1499 + path: "."
1500 + ref: "07848d0ebc5ff67dac0d2ecb638c3f4cd670d0cf"
1501 + resolved-ref: "07848d0ebc5ff67dac0d2ecb638c3f4cd670d0cf"
1502 + url: "https://github.com/bitanon/hashlib"
1503 + source: git
1504 + version: "1.19.2"
1505 + hashlib_codecs:
1506 + dependency: "direct overridden"
1507 + description:
1508 + path: "."
1509 + ref: b15b231bbced2bb076890f8cfd384f024e9eba71
1510 + resolved-ref: b15b231bbced2bb076890f8cfd384f024e9eba71
1511 + url: "https://github.com/bitanon/hashlib_codecs"
1512 + source: git
1513 + version: "2.6.0"
1514 + hex:
1515 + dependency: "direct overridden"
1516 + description:
1517 + path: "."
1518 + ref: "262f0113430f7c5662f0578d86334fce0e008ea7"
1519 + resolved-ref: "262f0113430f7c5662f0578d86334fce0e008ea7"
1520 + url: "https://github.com/stevenroose/dart-hex"
1521 + source: git
1522 + version: "0.2.0"
1523 + hive:
1524 + dependency: "direct main"
1525 + description:
1526 + path: hive
1527 + ref: "470473ffc1ba39f6c90f31ababe0ee63b76b69fe"
1528 + resolved-ref: "470473ffc1ba39f6c90f31ababe0ee63b76b69fe"
1529 + url: "https://github.com/hivedb/hive"
1530 + source: git
1531 + version: "2.2.3"
1532 + hive_flutter:
1533 + dependency: "direct main"
1534 + description:
1535 + path: hive_flutter
1536 + ref: db56a26d5324a19373a35e365c50d808c6e1ce0c
1537 + resolved-ref: db56a26d5324a19373a35e365c50d808c6e1ce0c
1538 + url: "https://github.com/hivedb/hive"
1539 + source: git
1540 + version: "1.1.0"
1541 + hooks:
1542 + dependency: "direct overridden"
1543 + description:
1544 + path: "pkgs/hooks"
1545 + ref: "5e2b3d1171cabe90bae969cd098c85182c1751b3"
1546 + resolved-ref: "5e2b3d1171cabe90bae969cd098c85182c1751b3"
1547 + url: "https://github.com/dart-lang/native"
1548 + source: git
1549 + version: "2.0.2"
1550 + hooks_riverpod:
1551 + dependency: "direct overridden"
1552 + description:
1553 + path: "packages/hooks_riverpod"
1554 + ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
1555 + resolved-ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
1556 + url: "https://github.com/rrousselGit/riverpod"
1557 + source: git
1558 + version: "3.3.2"
1559 + html:
1560 + dependency: "direct overridden"
1561 + description:
1562 + path: "pkgs/html"
1563 + ref: "11f4cf7ee79632be370062dad67b7dd81bc28d55"
1564 + resolved-ref: "11f4cf7ee79632be370062dad67b7dd81bc28d55"
1565 + url: "https://github.com/dart-lang/tools"
1566 + source: git
1567 + version: "0.15.6"
1568 + http:
1569 + dependency: "direct main"
1570 + description:
1571 + path: "pkgs/http"
1572 + ref: "907782f5a792e7a5b0ed92f118c0ad91f3ecde51"
1573 + resolved-ref: "907782f5a792e7a5b0ed92f118c0ad91f3ecde51"
1574 + url: "https://github.com/dart-lang/http"
1575 + source: git
1576 + version: "1.6.0"
1577 + http2:
1578 + dependency: "direct overridden"
1579 + description:
1580 + path: "pkgs/http2"
1581 + ref: "5e2281edd25f9addbf26242a0658d8f2dfa1134b"
1582 + resolved-ref: "5e2281edd25f9addbf26242a0658d8f2dfa1134b"
1583 + url: "https://github.com/dart-lang/http"
1584 + source: git
1585 + version: "2.3.1"
1586 + http_multi_server:
1587 + dependency: "direct overridden"
1588 + description:
1589 + path: "pkgs/http_multi_server"
1590 + ref: c27d6c780bae0207e938f09596c2cf8d9bb4a963
1591 + resolved-ref: c27d6c780bae0207e938f09596c2cf8d9bb4a963
1592 + url: "https://github.com/dart-lang/http"
1593 + source: git
1594 + version: "3.2.2"
1595 + http_parser:
1596 + dependency: "direct overridden"
1597 + description:
1598 + path: "pkgs/http_parser"
1599 + ref: "6ecd13a88b82c2fdc8a555f218bafb0ad0370f51"
1600 + resolved-ref: "6ecd13a88b82c2fdc8a555f218bafb0ad0370f51"
1601 + url: "https://github.com/dart-lang/http"
1602 + source: git
1603 + version: "4.1.2"
1604 + image:
1605 + dependency: "direct overridden"
1606 + description:
1607 + path: "."
1608 + ref: a5cc03b65592616bb423254cdea8ce4b093b4a04
1609 + resolved-ref: a5cc03b65592616bb423254cdea8ce4b093b4a04
1610 + url: "https://github.com/brendan-duncan/image"
1611 + source: git
1612 + version: "4.8.0"
1613 + image_picker:
1614 + dependency: "direct main"
1615 + description:
1616 + path: "packages/image_picker/image_picker"
1617 + ref: "2900bc94e9912486e3454223df2683a372f4e137"
1618 + resolved-ref: "2900bc94e9912486e3454223df2683a372f4e137"
1619 + url: "https://github.com/flutter/packages"
1620 + source: git
1621 + version: "1.2.3"
1622 + image_picker_android:
1623 + dependency: "direct overridden"
1624 + description:
1625 + path: "packages/image_picker/image_picker_android"
1626 + ref: "5f14a8010690b33f8f71d888dd6a3de665164e21"
1627 + resolved-ref: "5f14a8010690b33f8f71d888dd6a3de665164e21"
1628 + url: "https://github.com/flutter/packages"
1629 + source: git
1630 + version: "0.8.13+17"
1631 + image_picker_for_web:
1632 + dependency: "direct overridden"
1633 + description:
1634 + path: "packages/image_picker/image_picker_for_web"
1635 + ref: "34746bb64150c7bbf319a9eee4164b4a5d733b2e"
1636 + resolved-ref: "34746bb64150c7bbf319a9eee4164b4a5d733b2e"
1637 + url: "https://github.com/flutter/packages"
1638 + source: git
1639 + version: "3.1.1"
1640 + image_picker_ios:
1641 + dependency: "direct overridden"
1642 + description:
1643 + path: "packages/image_picker/image_picker_ios"
1644 + ref: "44a58ab4aab0b78fab2b51e0d093561be0b4964c"
1645 + resolved-ref: "44a58ab4aab0b78fab2b51e0d093561be0b4964c"
1646 + url: "https://github.com/flutter/packages"
1647 + source: git
1648 + version: "0.8.13+6"
1649 + image_picker_linux:
1650 + dependency: "direct overridden"
1651 + description:
1652 + path: "packages/image_picker/image_picker_linux"
1653 + ref: b26262b5034d59c9575b708a031ecfdfe12e5118
1654 + resolved-ref: b26262b5034d59c9575b708a031ecfdfe12e5118
1655 + url: "https://github.com/flutter/packages"
1656 + source: git
1657 + version: "0.2.2"
1658 + image_picker_macos:
1659 + dependency: "direct overridden"
1660 + description:
1661 + path: "packages/image_picker/image_picker_macos"
1662 + ref: "7ebd635db5c71197877a48cc31a7edba9a3f067b"
1663 + resolved-ref: "7ebd635db5c71197877a48cc31a7edba9a3f067b"
1664 + url: "https://github.com/flutter/packages"
1665 + source: git
1666 + version: "0.2.2+1"
1667 + image_picker_platform_interface:
1668 + dependency: "direct overridden"
1669 + description:
1670 + path: "packages/image_picker/image_picker_platform_interface"
1671 + ref: "501d8c9bd36577f1af17d799cb69fefd6c4b2f4b"
1672 + resolved-ref: "501d8c9bd36577f1af17d799cb69fefd6c4b2f4b"
1673 + url: "https://github.com/flutter/packages"
1674 + source: git
1675 + version: "2.11.1"
1676 + image_picker_windows:
1677 + dependency: "direct overridden"
1678 + description:
1679 + path: "packages/image_picker/image_picker_windows"
1680 + ref: b26262b5034d59c9575b708a031ecfdfe12e5118
1681 + resolved-ref: b26262b5034d59c9575b708a031ecfdfe12e5118
1682 + url: "https://github.com/flutter/packages"
1683 + source: git
1684 + version: "0.2.2"
1685 + in_app_review:
1686 + dependency: "direct main"
1687 + description:
1688 + path: in_app_review
1689 + ref: a08b2fcb98c74f2fa12b5f3c61b588b763430368
1690 + resolved-ref: a08b2fcb98c74f2fa12b5f3c61b588b763430368
1691 + url: "https://github.com/britannio/in_app_review"
1692 + source: git
1693 + version: "2.0.12"
1694 + in_app_review_platform_interface:
1695 + dependency: "direct overridden"
1696 + description:
1697 + path: in_app_review_platform_interface
1698 + ref: "54fcef429fc6f9ed50660d23741ef7e38a684a1f"
1699 + resolved-ref: "54fcef429fc6f9ed50660d23741ef7e38a684a1f"
1700 + url: "https://github.com/britannio/in_app_review"
1701 + source: git
1702 + version: "2.0.5"
1703 + integration_test:
1704 + dependency: "direct dev"
1705 + description: flutter
1706 + source: sdk
1707 + version: "0.0.0"
1708 + intl:
1709 + dependency: "direct main"
1710 + description:
1711 + path: "pkgs/intl"
1712 + ref: a1dd8e1ff32e5b53bdf38511cd5d7524694af95a
1713 + resolved-ref: a1dd8e1ff32e5b53bdf38511cd5d7524694af95a
1714 + url: "https://github.com/dart-lang/i18n"
1715 + source: git
1716 + version: "0.20.2"
1717 + io:
1718 + dependency: "direct overridden"
1719 + description:
1720 + path: "pkgs/io"
1721 + ref: faf2b86b71e633e956ff1489eb60885b21fa100d
1722 + resolved-ref: faf2b86b71e633e956ff1489eb60885b21fa100d
1723 + url: "https://github.com/dart-lang/tools"
1724 + source: git
1725 + version: "1.0.5"
1726 + jni:
1727 + dependency: "direct overridden"
1728 + description:
1729 + path: "pkgs/jni"
1730 + ref: "3b0c7beded15ef47a3dba4b5c0093cbe195e7aba"
1731 + resolved-ref: "3b0c7beded15ef47a3dba4b5c0093cbe195e7aba"
1732 + url: "https://github.com/dart-lang/native"
1733 + source: git
1734 + version: "1.0.3"
1735 + jni_flutter:
1736 + dependency: "direct overridden"
1737 + description:
1738 + path: "pkgs/jni_flutter"
1739 + ref: "6e3efdc1afa0462b1aff38c087cb50f0e6925cda"
1740 + resolved-ref: "6e3efdc1afa0462b1aff38c087cb50f0e6925cda"
1741 + url: "https://github.com/dart-lang/native"
1742 + source: git
1743 + version: "1.0.2"
1744 + jni_util:
1745 + dependency: "direct overridden"
1746 + description:
1747 + path: "pkgs/jni_util"
1748 + ref: "7990d3a3806fa6c161e2340a95574d3a92d9bca2"
1749 + resolved-ref: "7990d3a3806fa6c161e2340a95574d3a92d9bca2"
1750 + url: "https://github.com/dart-lang/native"
1751 + source: git
1752 + version: "1.0.0"
1753 + js:
1754 + dependency: "direct overridden"
1755 + description:
1756 + path: "pkg/js"
1757 + ref: c70f78e7d682c158c15ca0c26c729b3ccb932284
1758 + resolved-ref: c70f78e7d682c158c15ca0c26c729b3ccb932284
1759 + url: "https://github.com/dart-lang/sdk"
1760 + source: git
1761 + version: "0.7.2"
1762 + json_annotation:
1763 + dependency: "direct overridden"
1764 + description:
1765 + path: json_annotation
1766 + ref: "61e7b879b22af58f2f942ccf6c0ae81acd0cb1bc"
1767 + resolved-ref: "61e7b879b22af58f2f942ccf6c0ae81acd0cb1bc"
1768 + url: "https://github.com/google/json_serializable.dart"
1769 + source: git
1770 + version: "4.12.0"
1771 + json_bigint:
1772 + dependency: "direct overridden"
1773 + description:
1774 + path: "."
1775 + ref: "5528e714cb048860a3fd700fd3f2e406828e9cd8"
1776 + resolved-ref: "5528e714cb048860a3fd700fd3f2e406828e9cd8"
1777 + url: "https://github.com/ozaner/json_bigint"
1778 + source: git
1779 + version: "3.1.0"
1780 + json_rpc_2:
1781 + dependency: "direct overridden"
1782 + description:
1783 + path: "pkgs/json_rpc_2"
1784 + ref: "88087ae253cab7ff9eccadb3c8cbf550ee071226"
1785 + resolved-ref: "88087ae253cab7ff9eccadb3c8cbf550ee071226"
1786 + url: "https://github.com/dart-lang/tools"
1787 + source: git
1788 + version: "3.0.3"
1789 + kepler:
1790 + dependency: "direct overridden"
1791 + description:
1792 + path: "."
1793 + ref: e2c671389c18a5149147f598627c946c311e36b8
1794 + resolved-ref: e2c671389c18a5149147f598627c946c311e36b8
1795 + url: "https://github.com/tjcampanella/kepler"
1796 + source: git
1797 + version: "1.0.3"
1798 + keyboard_actions:
1799 + dependency: "direct main"
1800 + description:
1801 + path: "."
1802 + ref: e197412c52cd75d8a7c7ac74558610c0f92635e4
1803 + resolved-ref: e197412c52cd75d8a7c7ac74558610c0f92635e4
1804 + url: "https://github.com/diegoveloper/flutter_keyboard_actions"
1805 + source: git
1806 + version: "4.2.2"
1807 + leak_tracker:
1808 + dependency: "direct overridden"
1809 + description:
1810 + path: "pkgs/leak_tracker"
1811 + ref: "64bae50ca89528f73d6a440c22b7e3e1713bb7f0"
1812 + resolved-ref: "64bae50ca89528f73d6a440c22b7e3e1713bb7f0"
1813 + url: "https://github.com/dart-lang/leak_tracker"
1814 + source: git
1815 + version: "11.0.2"
1816 + leak_tracker_flutter_testing:
1817 + dependency: "direct overridden"
1818 + description:
1819 + path: "pkgs/leak_tracker_flutter_testing"
1820 + ref: "84d523d8ea34ecf889a3f383e206bc231af31686"
1821 + resolved-ref: "84d523d8ea34ecf889a3f383e206bc231af31686"
1822 + url: "https://github.com/dart-lang/leak_tracker"
1823 + source: git
1824 + version: "3.0.10"
1825 + leak_tracker_testing:
1826 + dependency: "direct overridden"
1827 + description:
1828 + path: "pkgs/leak_tracker_testing"
1829 + ref: "84d523d8ea34ecf889a3f383e206bc231af31686"
1830 + resolved-ref: "84d523d8ea34ecf889a3f383e206bc231af31686"
1831 + url: "https://github.com/dart-lang/leak_tracker"
1832 + source: git
1833 + version: "3.0.2"
1834 + ledger_bitcoin:
1835 + dependency: "direct overridden"
1836 + description:
1837 + path: "packages/ledger-bitcoin"
1838 + ref: "75bba8632c529debf30ee2b1858530009fa6440b"
1839 + resolved-ref: "75bba8632c529debf30ee2b1858530009fa6440b"
1840 + url: "https://github.com/cake-tech/ledger-flutter-plus-plugins"
1841 + source: git
1842 + version: "0.0.3"
1843 + ledger_ethereum:
1844 + dependency: "direct overridden"
1845 + description:
1846 + path: "packages/ledger-ethereum"
1847 + ref: f4761cd5171d4c1e2e42fd3298261650539fb2db
1848 + resolved-ref: f4761cd5171d4c1e2e42fd3298261650539fb2db
1849 + url: "https://github.com/cake-tech/ledger-flutter-plus-plugins"
1850 + source: git
1851 + version: "0.0.5"
1852 + ledger_flutter_plus:
1853 + dependency: "direct main"
1854 + description:
1855 + path: "."
1856 + ref: eaf49764ad0863e8dec97ad30ff6aea0a1d1bd28
1857 + resolved-ref: eaf49764ad0863e8dec97ad30ff6aea0a1d1bd28
1858 + url: "https://github.com/cake-tech/ledger-flutter-plus"
1859 + source: git
1860 + version: "1.6.0+1"
1861 + ledger_litecoin:
1862 + dependency: "direct overridden"
1863 + description:
1864 + path: "packages/ledger-litecoin"
1865 + ref: "75bba8632c529debf30ee2b1858530009fa6440b"
1866 + resolved-ref: "75bba8632c529debf30ee2b1858530009fa6440b"
1867 + url: "https://github.com/cake-tech/ledger-flutter-plus-plugins"
1868 + source: git
1869 + version: "0.0.2"
1870 + ledger_usb_plus:
1871 + dependency: "direct overridden"
1872 + description:
1873 + path: "."
1874 + ref: 40af7c48cf34211ba3cc9e87dd05ed1af8a429a2
1875 + resolved-ref: 40af7c48cf34211ba3cc9e87dd05ed1af8a429a2
1876 + url: "https://github.com/cake-tech/ledger-usb-plus"
1877 + source: git
1878 + version: "1.0.8"
1879 + libcrypto:
1880 + dependency: "direct overridden"
1881 + description:
1882 + path: "."
1883 + ref: "98be84e0a2c7b423842d1fbbd2d920ff03180235"
1884 + resolved-ref: "98be84e0a2c7b423842d1fbbd2d920ff03180235"
1885 + url: "https://github.com/MrCyjaneK/libcrypto"
1886 + source: git
1887 + version: "0.2.2"
1888 + local_auth:
1889 + dependency: "direct overridden"
1890 + description:
1891 + path: "packages/local_auth/local_auth"
1892 + ref: db8bfed397145b7c5a1ade3c374a74053649ce12
1893 + resolved-ref: db8bfed397145b7c5a1ade3c374a74053649ce12
1894 + url: "https://github.com/flutter/packages"
1895 + source: git
1896 + version: "2.3.0"
1897 + local_auth_android:
1898 + dependency: "direct main"
1899 + description:
1900 + path: "packages/local_auth/local_auth_android"
1901 + ref: "1c0be204c45eea42927eb6005bb45f16a8fffb07"
1902 + resolved-ref: "1c0be204c45eea42927eb6005bb45f16a8fffb07"
1903 + url: "https://github.com/flutter/packages"
1904 + source: git
1905 + version: "1.0.56"
1906 + local_auth_darwin:
1907 + dependency: "direct overridden"
1908 + description:
1909 + path: "packages/local_auth/local_auth_darwin"
1910 + ref: d3e0285a6bf353f4bed9ba01d2b37a68fa63d741
1911 + resolved-ref: d3e0285a6bf353f4bed9ba01d2b37a68fa63d741
1912 + url: "https://github.com/flutter/packages"
1913 + source: git
1914 + version: "1.6.1"
1915 + local_auth_platform_interface:
1916 + dependency: "direct overridden"
1917 + description:
1918 + path: "packages/local_auth/local_auth_platform_interface"
1919 + ref: "321a5846838d2bfa5f3dd463e3833b951da0db32"
1920 + resolved-ref: "321a5846838d2bfa5f3dd463e3833b951da0db32"
1921 + url: "https://github.com/flutter/packages"
1922 + source: git
1923 + version: "1.1.0"
1924 + local_auth_windows:
1925 + dependency: "direct overridden"
1926 + description:
1927 + path: "packages/local_auth/local_auth_windows"
1928 + ref: e978e06eb9207e4bd7a56b2139b2906d3150edb5
1929 + resolved-ref: e978e06eb9207e4bd7a56b2139b2906d3150edb5
1930 + url: "https://github.com/flutter/packages"
1931 + source: git
1932 + version: "1.0.11"
1933 + logger:
1934 + dependency: "direct overridden"
1935 + description:
1936 + path: "."
1937 + ref: "4c56353a5060f403650f0c728a6438d3db2de669"
1938 + resolved-ref: "4c56353a5060f403650f0c728a6438d3db2de669"
1939 + url: "https://github.com/SourceHorizon/logger"
1940 + source: git
1941 + version: "2.7.0"
1942 + logging:
1943 + dependency: "direct dev"
1944 + description:
1945 + path: "pkgs/logging"
1946 + ref: "8151b9f57fa3fee10421a19ce24470e143c0dee5"
1947 + resolved-ref: "8151b9f57fa3fee10421a19ce24470e143c0dee5"
1948 + url: "https://github.com/dart-lang/core"
1949 + source: git
1950 + version: "1.3.0"
1951 + lottie:
1952 + dependency: "direct main"
1953 + description:
1954 + path: "."
1955 + ref: "1eef993a7a69cd05cfcc4c9eac4f2d89ecfab2d1"
1956 + resolved-ref: "1eef993a7a69cd05cfcc4c9eac4f2d89ecfab2d1"
1957 + url: "https://github.com/xvrh/lottie-flutter"
1958 + source: git
1959 + version: "3.3.3"
1960 + matcher:
1961 + dependency: "direct overridden"
1962 + description:
1963 + path: "pkgs/matcher"
1964 + ref: "45e4ef287d70dad449f13d4f284f9faea2d9188b"
1965 + resolved-ref: "45e4ef287d70dad449f13d4f284f9faea2d9188b"
1966 + url: "https://github.com/dart-lang/test"
1967 + source: git
1968 + version: "0.12.19"
1969 + material_color_utilities:
1970 + dependency: "direct overridden"
1971 + description:
1972 + path: dart
1973 + ref: "5d4397afe1830b09ff99c1cb3cf901038951282a"
1974 + resolved-ref: "5d4397afe1830b09ff99c1cb3cf901038951282a"
1975 + url: "https://github.com/material-foundation/material-color-utilities"
1976 + source: git
1977 + version: "0.13.0"
1978 + memoize:
1979 + dependency: "direct overridden"
1980 + description:
1981 + path: "."
1982 + ref: f541e50b3be0e7b9e83bbd3858d3a25356140570
1983 + resolved-ref: f541e50b3be0e7b9e83bbd3858d3a25356140570
1984 + url: "https://github.com/wrike/memoize_dart"
1985 + source: git
1986 + version: "3.0.0"
1987 + meta:
1988 + dependency: transitive
1989 + description:
1990 + name: meta
1991 + sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
1992 + url: "https://pub.dev"
1993 + source: hosted
1994 + version: "1.17.0"
1995 + mime:
1996 + dependency: "direct overridden"
1997 + description:
1998 + path: "pkgs/mime"
1999 + ref: "3440b74e430051304b56d4acd71b7ed30ab1855d"
2000 + resolved-ref: "3440b74e430051304b56d4acd71b7ed30ab1855d"
2001 + url: "https://github.com/dart-lang/tools"
2002 + source: git
2003 + version: "2.0.0"
2004 + mobx:
2005 + dependency: "direct main"
2006 + description:
2007 + path: mobx
2008 + ref: d677b8d361301b60577267703371013749b7b7de
2009 + resolved-ref: d677b8d361301b60577267703371013749b7b7de
2010 + url: "https://github.com/mobxjs/mobx.dart"
2011 + source: git
2012 + version: "2.6.0"
2013 + mobx_codegen:
2014 + dependency: "direct dev"
2015 + description:
2016 + path: mobx_codegen
2017 + ref: "39a1f18c2e76a564b5e5358426d335569bc332ec"
2018 + resolved-ref: "39a1f18c2e76a564b5e5358426d335569bc332ec"
2019 + url: "https://github.com/mobxjs/mobx.dart"
2020 + source: git
2021 + version: "2.7.7"
2022 + mockito:
2023 + dependency: "direct overridden"
2024 + description:
2025 + path: "builder_pkgs/mockito"
2026 + ref: f550d53994b429f48f2b86f9c70956bf50d4e0c2
2027 + resolved-ref: f550d53994b429f48f2b86f9c70956bf50d4e0c2
2028 + url: "https://github.com/dart-lang/build"
2029 + source: git
2030 + version: "5.6.4"
2031 + mocktail:
2032 + dependency: "direct dev"
2033 + description:
2034 + path: "packages/mocktail"
2035 + ref: "12989138eb6beb3d1cad330ebfd88fef005a4e3e"
2036 + resolved-ref: "12989138eb6beb3d1cad330ebfd88fef005a4e3e"
2037 + url: "https://github.com/felangel/mocktail"
2038 + source: git
2039 + version: "1.0.5"
2040 + modal_bottom_sheet:
2041 + dependency: "direct main"
2042 + description:
2043 + path: modal_bottom_sheet
2044 + ref: b1cca111c53d41b9f07123a8c67cfe06fb1b69bf
2045 + resolved-ref: b1cca111c53d41b9f07123a8c67cfe06fb1b69bf
2046 + url: "https://github.com/cake-tech/modal_bottom_sheet"
2047 + source: git
2048 + version: "3.0.0"
2049 + monero:
2050 + dependency: "direct overridden"
2051 + description:
2052 + path: "impls/monero.dart"
2053 + ref: "3bfb3856a838f2bf6b729501837bb0295dedf25d"
2054 + resolved-ref: "3bfb3856a838f2bf6b729501837bb0295dedf25d"
2055 + url: "https://github.com/mrcyjanek/monero_c.git"
2056 + source: git
2057 + version: "0.0.0"
2058 + msgpack_dart:
2059 + dependency: "direct overridden"
2060 + description:
2061 + path: "."
2062 + ref: "2527c0a1e2eabf92a7f5db50983d3ee4ec71ccaa"
2063 + resolved-ref: "2527c0a1e2eabf92a7f5db50983d3ee4ec71ccaa"
2064 + url: "https://github.com/knopp/msgpack_dart"
2065 + source: git
2066 + version: "1.0.1"
2067 + msix:
2068 + dependency: "direct dev"
2069 + description:
2070 + path: "."
2071 + ref: "1ab4df346a92ef4dc7bf02fd857d2975be04d47c"
2072 + resolved-ref: "1ab4df346a92ef4dc7bf02fd857d2975be04d47c"
2073 + url: "https://github.com/YehudaKremer/msix"
2074 + source: git
2075 + version: "3.16.9"
2076 + mutex:
2077 + dependency: "direct overridden"
2078 + description:
2079 + path: "."
2080 + ref: "84ca903a3ac863735e3228c75a212133621f680f"
2081 + resolved-ref: "84ca903a3ac863735e3228c75a212133621f680f"
2082 + url: "https://github.com/hoylen/dart-mutex"
2083 + source: git
2084 + version: "3.1.0"
2085 + nanodart:
2086 + dependency: "direct overridden"
2087 + description:
2088 + path: "."
2089 + ref: "5c1b352fc02d94a34129f3848bedcec441c2b8c7"
2090 + resolved-ref: "5c1b352fc02d94a34129f3848bedcec441c2b8c7"
2091 + url: "https://github.com/appditto/nanodart"
2092 + source: git
2093 + version: "2.0.0"
2094 + nanoutil:
2095 + dependency: "direct overridden"
2096 + description:
2097 + path: "."
2098 + ref: c01a9c552917008d8fbc6b540db657031625b04f
2099 + resolved-ref: c01a9c552917008d8fbc6b540db657031625b04f
2100 + url: "https://github.com/perishllc/nanoutil.git"
2101 + source: git
2102 + version: "1.0.3"
2103 + native_toolchain_c:
2104 + dependency: "direct overridden"
2105 + description:
2106 + path: "pkgs/native_toolchain_c"
2107 + ref: "7dbb51d78534b3c037f3f063448cc45e5ca80a58"
2108 + resolved-ref: "7dbb51d78534b3c037f3f063448cc45e5ca80a58"
2109 + url: "https://github.com/dart-lang/native"
2110 + source: git
2111 + version: "0.19.2"
2112 + nested:
2113 + dependency: "direct overridden"
2114 + description:
2115 + path: "."
2116 + ref: "23dbf54af127301839927831695800edd5cc3dc0"
2117 + resolved-ref: "23dbf54af127301839927831695800edd5cc3dc0"
2118 + url: "https://github.com/rrousselGit/nested"
2119 + source: git
2120 + version: "1.0.0"
2121 + nm:
2122 + dependency: "direct overridden"
2123 + description:
2124 + path: "."
2125 + ref: "6568c7666071f56177e45333c80dc1978ae14483"
2126 + resolved-ref: "6568c7666071f56177e45333c80dc1978ae14483"
2127 + url: "https://github.com/canonical/nm.dart"
2128 + source: git
2129 + version: "0.5.0"
2130 + node_preamble:
2131 + dependency: "direct overridden"
2132 + description:
2133 + path: "."
2134 + ref: ddd4f12ddddf94ad53ec17a742008c23ad666cef
2135 + resolved-ref: ddd4f12ddddf94ad53ec17a742008c23ad666cef
2136 + url: "https://github.com/mbullington/node_preamble.dart"
2137 + source: git
2138 + version: "2.0.2"
2139 + nostr_tools:
2140 + dependency: "direct main"
2141 + description:
2142 + path: "."
2143 + ref: "089d5a2dd751429a040ba10fb24fcbae564053e5"
2144 + resolved-ref: "089d5a2dd751429a040ba10fb24fcbae564053e5"
2145 + url: "https://github.com/cake-tech/nostr_tools.git"
2146 + source: git
2147 + version: "1.0.9"
2148 + objective_c:
2149 + dependency: "direct overridden"
2150 + description:
2151 + path: "pkgs/objective_c"
2152 + ref: "7990d3a3806fa6c161e2340a95574d3a92d9bca2"
2153 + resolved-ref: "7990d3a3806fa6c161e2340a95574d3a92d9bca2"
2154 + url: "https://github.com/dart-lang/native"
2155 + source: git
2156 + version: "9.5.0"
2157 + on_chain:
2158 + dependency: "direct main"
2159 + description:
2160 + path: "."
2161 + ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
2162 + resolved-ref: "096865a8c6b89c260beadfec04f7e184c40a3273"
2163 + url: "https://github.com/cake-tech/on_chain.git"
2164 + source: git
2165 + version: "3.7.0"
2166 + package_config:
2167 + dependency: "direct overridden"
2168 + description:
2169 + path: "pkgs/package_config"
2170 + ref: "9c533582195b12ea006dc7188767b5a288b4c5c8"
2171 + resolved-ref: "9c533582195b12ea006dc7188767b5a288b4c5c8"
2172 + url: "https://github.com/dart-lang/tools"
2173 + source: git
2174 + version: "2.2.0"
2175 + package_info_plus:
2176 + dependency: "direct main"
2177 + description:
2178 + path: "packages/package_info_plus/package_info_plus"
2179 + ref: "9f03424b7916b195ec6a4bebe4cc1a310ba40d4a"
2180 + resolved-ref: "9f03424b7916b195ec6a4bebe4cc1a310ba40d4a"
2181 + url: "https://github.com/fluttercommunity/plus_plugins"
2182 + source: git
2183 + version: "8.3.1"
2184 + package_info_plus_platform_interface:
2185 + dependency: "direct overridden"
2186 + description:
2187 + path: "packages/package_info_plus/package_info_plus_platform_interface"
2188 + ref: "9f03424b7916b195ec6a4bebe4cc1a310ba40d4a"
2189 + resolved-ref: "9f03424b7916b195ec6a4bebe4cc1a310ba40d4a"
2190 + url: "https://github.com/fluttercommunity/plus_plugins"
2191 + source: git
2192 + version: "3.2.1"
2193 + path:
2194 + dependency: "direct overridden"
2195 + description:
2196 + path: "pkgs/path"
2197 + ref: "010a343e71238b3ed7fcd55dad5869ecaa40991a"
2198 + resolved-ref: "010a343e71238b3ed7fcd55dad5869ecaa40991a"
2199 + url: "https://github.com/dart-lang/core"
2200 + source: git
2201 + version: "1.9.1"
2202 + path_drawing:
2203 + dependency: "direct overridden"
2204 + description:
2205 + path: "."
2206 + ref: "27ce967273429ce505962d4cf68c17a5b16b5aef"
2207 + resolved-ref: "27ce967273429ce505962d4cf68c17a5b16b5aef"
2208 + url: "https://github.com/dnfield/flutter_path_drawing"
2209 + source: git
2210 + version: "1.0.1"
2211 + path_parsing:
2212 + dependency: "direct overridden"
2213 + description:
2214 + path: "third_party/packages/path_parsing"
2215 + ref: "3c3181c2cfcd0557e12a95ace0e347141f63e384"
2216 + resolved-ref: "3c3181c2cfcd0557e12a95ace0e347141f63e384"
2217 + url: "https://github.com/flutter/packages"
2218 + source: git
2219 + version: "1.1.0"
2220 + path_provider:
2221 + dependency: "direct main"
2222 + description:
2223 + path: "packages/path_provider/path_provider"
2224 + ref: aa964a3ed6d97e4e9778feed85fa9ef1255a0477
2225 + resolved-ref: aa964a3ed6d97e4e9778feed85fa9ef1255a0477
2226 + url: "https://github.com/flutter/packages"
2227 + source: git
2228 + version: "2.1.6"
2229 + path_provider_android:
2230 + dependency: "direct main"
2231 + description:
2232 + path: "packages/path_provider/path_provider_android"
2233 + ref: f52df418da6ef2ba666112b4b9e87d9a1c43a0d0
2234 + resolved-ref: f52df418da6ef2ba666112b4b9e87d9a1c43a0d0
2235 + url: "https://github.com/flutter/packages"
2236 + source: git
2237 + version: "2.3.1"
2238 + path_provider_foundation:
2239 + dependency: "direct overridden"
2240 + description:
2241 + path: "packages/path_provider/path_provider_foundation"
2242 + ref: "2ada7838737b6ea374c3ef1fffba95bd097eed92"
2243 + resolved-ref: "2ada7838737b6ea374c3ef1fffba95bd097eed92"
2244 + url: "https://github.com/flutter/packages"
2245 + source: git
2246 + version: "2.6.0"
2247 + path_provider_linux:
2248 + dependency: "direct overridden"
2249 + description:
2250 + path: "packages/path_provider/path_provider_linux"
2251 + ref: af136ccab198bc7dfa25f5fa5ace23fdbcdaadc7
2252 + resolved-ref: af136ccab198bc7dfa25f5fa5ace23fdbcdaadc7
2253 + url: "https://github.com/flutter/packages"
2254 + source: git
2255 + version: "2.2.2"
2256 + path_provider_platform_interface:
2257 + dependency: "direct overridden"
2258 + description:
2259 + path: "packages/path_provider/path_provider_platform_interface"
2260 + ref: aa964a3ed6d97e4e9778feed85fa9ef1255a0477
2261 + resolved-ref: aa964a3ed6d97e4e9778feed85fa9ef1255a0477
2262 + url: "https://github.com/flutter/packages"
2263 + source: git
2264 + version: "2.1.3"
2265 + path_provider_windows:
2266 + dependency: "direct overridden"
2267 + description:
2268 + path: "packages/path_provider/path_provider_windows"
2269 + ref: "47a92dbdea9bc433779c76b404af9c5ab6fa40cc"
2270 + resolved-ref: "47a92dbdea9bc433779c76b404af9c5ab6fa40cc"
2271 + url: "https://github.com/flutter/packages"
2272 + source: git
2273 + version: "2.3.0"
2274 + pausable_timer:
2275 + dependency: "direct overridden"
2276 + description:
2277 + path: "."
2278 + ref: "41e21b6444749a5d8cdb720128c9be66168b83cf"
2279 + resolved-ref: "41e21b6444749a5d8cdb720128c9be66168b83cf"
2280 + url: "https://github.com/llucax/pausable_timer"
2281 + source: git
2282 + version: "3.1.0+3"
2283 + payjoin_flutter:
2284 + dependency: "direct overridden"
2285 + description:
2286 + path: "."
2287 + ref: b28c825b1d63381e8c2b25ef2ccabacbf833ce53
2288 + resolved-ref: b28c825b1d63381e8c2b25ef2ccabacbf833ce53
2289 + url: "https://github.com/konstantinullrich/payjoin-flutter"
2290 + source: git
2291 + version: "0.23.0"
2292 + pedantic:
2293 + dependency: "direct dev"
2294 + description:
2295 + path: "."
2296 + ref: bdcb962e3d2bda31a0e6dadb58b670aa633046e9
2297 + resolved-ref: bdcb962e3d2bda31a0e6dadb58b670aa633046e9
2298 + url: "https://github.com/google/pedantic"
2299 + source: git
2300 + version: "1.11.1"
2301 + permission_handler:
2302 + dependency: "direct main"
2303 + description:
2304 + path: permission_handler
2305 + ref: "441c53c4e02ac9b6417f758495a4b04618c6e600"
2306 + resolved-ref: "441c53c4e02ac9b6417f758495a4b04618c6e600"
2307 + url: "https://github.com/baseflow/flutter-permission-handler"
2308 + source: git
2309 + version: "11.4.0"
2310 + permission_handler_android:
2311 + dependency: "direct overridden"
2312 + description:
2313 + path: permission_handler_android
2314 + ref: "1dd6dc265a8f7b8b8dd0dd04f7202b8c17e4aa59"
2315 + resolved-ref: "1dd6dc265a8f7b8b8dd0dd04f7202b8c17e4aa59"
2316 + url: "https://github.com/baseflow/flutter-permission-handler"
2317 + source: git
2318 + version: "12.1.0"
2319 + permission_handler_apple:
2320 + dependency: "direct overridden"
2321 + description:
2322 + path: permission_handler_apple
2323 + ref: "5c989b1be9abbbb325424ad96e5be4efdc0987c2"
2324 + resolved-ref: "5c989b1be9abbbb325424ad96e5be4efdc0987c2"
2325 + url: "https://github.com/baseflow/flutter-permission-handler"
2326 + source: git
2327 + version: "9.6.1"
2328 + permission_handler_html:
2329 + dependency: "direct overridden"
2330 + description:
2331 + path: permission_handler_html
2332 + ref: f93a58bb2b993b831f48cf1ec0b3537905643e7e
2333 + resolved-ref: f93a58bb2b993b831f48cf1ec0b3537905643e7e
2334 + url: "https://github.com/baseflow/flutter-permission-handler"
2335 + source: git
2336 + version: "0.1.4+1"
2337 + permission_handler_platform_interface:
2338 + dependency: "direct overridden"
2339 + description:
2340 + path: permission_handler_platform_interface
2341 + ref: b0bdda5faabb912dc6d0b3f330f9d801727db76e
2342 + resolved-ref: b0bdda5faabb912dc6d0b3f330f9d801727db76e
2343 + url: "https://github.com/baseflow/flutter-permission-handler"
2344 + source: git
2345 + version: "4.4.0"
2346 + permission_handler_windows:
2347 + dependency: "direct overridden"
2348 + description:
2349 + path: permission_handler_windows
2350 + ref: "41c2485eb698d055dcf59a373c07dee537b8aa01"
2351 + resolved-ref: "41c2485eb698d055dcf59a373c07dee537b8aa01"
2352 + url: "https://github.com/baseflow/flutter-permission-handler"
2353 + source: git
2354 + version: "0.2.2"
2355 + petitparser:
2356 + dependency: "direct overridden"
2357 + description:
2358 + path: "."
2359 + ref: "3d3c2155df8c427027660f8ca37ddc6e7b894748"
2360 + resolved-ref: "3d3c2155df8c427027660f8ca37ddc6e7b894748"
2361 + url: "https://github.com/petitparser/dart-petitparser"
2362 + source: git
2363 + version: "6.1.0"
2364 + pinenacl:
2365 + dependency: "direct overridden"
2366 + description:
2367 + path: "."
2368 + ref: "30c38f30a34137aa748217cf2d6fc978740d8da8"
2369 + resolved-ref: "30c38f30a34137aa748217cf2d6fc978740d8da8"
2370 + url: "https://github.com/ilap/pinenacl-dart"
2371 + source: git
2372 + version: "0.6.0"
2373 + platform:
2374 + dependency: "direct overridden"
2375 + description:
2376 + path: "pkgs/platform"
2377 + ref: "07aff972869412010a73bbe33af0909bc0536e78"
2378 + resolved-ref: "07aff972869412010a73bbe33af0909bc0536e78"
2379 + url: "https://github.com/dart-lang/core"
2380 + source: git
2381 + version: "3.1.6"
2382 + plugin_platform_interface:
2383 + dependency: "direct overridden"
2384 + description:
2385 + path: "packages/plugin_platform_interface"
2386 + ref: bb97da8ec627466fdb45cdd36e2c0e35dee40e9e
2387 + resolved-ref: bb97da8ec627466fdb45cdd36e2c0e35dee40e9e
2388 + url: "https://github.com/flutter/packages"
2389 + source: git
2390 + version: "2.1.8"
2391 + pointycastle:
2392 + dependency: "direct overridden"
2393 + description:
2394 + path: "."
2395 + ref: c7009dbf7785f4ff865ddb4eefdaed8c18ef3baa
2396 + resolved-ref: c7009dbf7785f4ff865ddb4eefdaed8c18ef3baa
2397 + url: "https://github.com/bcgit/pc-dart"
2398 + source: git
2399 + version: "3.9.1"
2400 + polyseed:
2401 + dependency: "direct main"
2402 + description:
2403 + path: "."
2404 + ref: "1a8280ac2b6f01d202d8bff71527fe1ce498c4ed"
2405 + resolved-ref: "1a8280ac2b6f01d202d8bff71527fe1ce498c4ed"
2406 + url: "https://github.com/cake-tech/polyseed_dart"
2407 + source: git
2408 + version: "0.0.7"
2409 + pool:
2410 + dependency: "direct overridden"
2411 + description:
2412 + path: "pkgs/pool"
2413 + ref: "042b03e8284032088f851172ab7b2aed06da1d72"
2414 + resolved-ref: "042b03e8284032088f851172ab7b2aed06da1d72"
2415 + url: "https://github.com/dart-lang/tools"
2416 + source: git
2417 + version: "1.5.2"
2418 + posix:
2419 + dependency: "direct overridden"
2420 + description:
2421 + path: "."
2422 + ref: "3c544340f3e4ffc64b20e6959ae8229c98638a0a"
2423 + resolved-ref: "3c544340f3e4ffc64b20e6959ae8229c98638a0a"
2424 + url: "https://github.com/onepub-dev/dart_posix"
2425 + source: git
2426 + version: "6.5.2"
2427 + process:
2428 + dependency: "direct overridden"
2429 + description:
2430 + path: "pkgs/process"
2431 + ref: "5e977d6f0698a220279a50538c89a440d56b0c44"
2432 + resolved-ref: "5e977d6f0698a220279a50538c89a440d56b0c44"
2433 + url: "https://github.com/dart-lang/tools"
2434 + source: git
2435 + version: "5.0.5"
2436 + progressive_blur:
2437 + dependency: "direct main"
2438 + description:
2439 + path: "."
2440 + ref: "6ec8d0ccf46b1629a46ab68f31e26df489bac958"
2441 + resolved-ref: "6ec8d0ccf46b1629a46ab68f31e26df489bac958"
2442 + url: "https://github.com/kekland/progressive_blur"
2443 + source: git
2444 + version: "0.0.2"
2445 + protobuf:
2446 + dependency: "direct overridden"
2447 + description:
2448 + path: protobuf
2449 + ref: a852ba4e4b6f319c655fc938864dac8442b7c4ad
2450 + resolved-ref: a852ba4e4b6f319c655fc938864dac8442b7c4ad
2451 + url: "https://github.com/google/protobuf.dart"
2452 + source: git
2453 + version: "3.1.0"
2454 + provider:
2455 + dependency: "direct overridden"
2456 + description:
2457 + path: "packages/provider"
2458 + ref: "558bdcd26ddb2b922bec06e3fa0d91bc59479baf"
2459 + resolved-ref: "558bdcd26ddb2b922bec06e3fa0d91bc59479baf"
2460 + url: "https://github.com/rrousselGit/provider"
2461 + source: git
2462 + version: "6.1.5+1"
2463 + pub_semver:
2464 + dependency: "direct overridden"
2465 + description:
2466 + path: "pkgs/pub_semver"
2467 + ref: d67cd0022095a138c66df94f100e5a129c15a65e
2468 + resolved-ref: d67cd0022095a138c66df94f100e5a129c15a65e
2469 + url: "https://github.com/dart-lang/tools"
2470 + source: git
2471 + version: "2.2.0"
2472 + pubspec_parse:
2473 + dependency: "direct overridden"
2474 + description:
2475 + path: "pkgs/pubspec_parse"
2476 + ref: "070355ee7014c4d37bdc50fa2b4a597f2774f9ca"
2477 + resolved-ref: "070355ee7014c4d37bdc50fa2b4a597f2774f9ca"
2478 + url: "https://github.com/dart-lang/tools"
2479 + source: git
2480 + version: "1.5.0"
2481 + qr:
2482 + dependency: "direct overridden"
2483 + description:
2484 + path: "."
2485 + ref: "792288784e200301b323b1e36852ae60a3ac2431"
2486 + resolved-ref: "792288784e200301b323b1e36852ae60a3ac2431"
2487 + url: "https://github.com/kevmoo/qr.dart"
2488 + source: git
2489 + version: "3.0.2"
2490 + qr_flutter:
2491 + dependency: "direct main"
2492 + description:
2493 + path: "."
2494 + ref: dced28909a82e1906e7c510ae8ca807a1658c898
2495 + resolved-ref: dced28909a82e1906e7c510ae8ca807a1658c898
2496 + url: "https://github.com/cake-tech/qr.flutter.git"
2497 + source: git
2498 + version: "4.0.1"
2499 + quick_actions:
2500 + dependency: "direct main"
2501 + description:
2502 + path: "packages/quick_actions/quick_actions"
2503 + ref: "8238e1c5ada8c6a99f7fb6087484b52face33721"
2504 + resolved-ref: "8238e1c5ada8c6a99f7fb6087484b52face33721"
2505 + url: "https://github.com/flutter/packages"
2506 + source: git
2507 + version: "1.1.0"
2508 + quick_actions_android:
2509 + dependency: "direct overridden"
2510 + description:
2511 + path: "packages/quick_actions/quick_actions_android"
2512 + ref: c05ab81dddf0f145c57b43df80903ce17ba84baf
2513 + resolved-ref: c05ab81dddf0f145c57b43df80903ce17ba84baf
2514 + url: "https://github.com/flutter/packages"
2515 + source: git
2516 + version: "1.0.30"
2517 + quick_actions_ios:
2518 + dependency: "direct overridden"
2519 + description:
2520 + path: "packages/quick_actions/quick_actions_ios"
2521 + ref: "7ae082a7f6cd1bc6a219c6ab0adf27a3d8ffdc23"
2522 + resolved-ref: "7ae082a7f6cd1bc6a219c6ab0adf27a3d8ffdc23"
2523 + url: "https://github.com/flutter/packages"
2524 + source: git
2525 + version: "1.2.4"
2526 + quick_actions_platform_interface:
2527 + dependency: "direct overridden"
2528 + description:
2529 + path: "packages/quick_actions/quick_actions_platform_interface"
2530 + ref: "761812665448c7e5a1bd5810aeabfac1ac027038"
2531 + resolved-ref: "761812665448c7e5a1bd5810aeabfac1ac027038"
2532 + url: "https://github.com/flutter/packages"
2533 + source: git
2534 + version: "1.1.0"
2535 + quiver:
2536 + dependency: "direct overridden"
2537 + description:
2538 + path: "."
2539 + ref: "6ec3568dee63ae02e8676e28a6df0157f4d20e84"
2540 + resolved-ref: "6ec3568dee63ae02e8676e28a6df0157f4d20e84"
2541 + url: "https://github.com/google/quiver-dart"
2542 + source: git
2543 + version: "3.2.2"
2544 + rational:
2545 + dependency: "direct overridden"
2546 + description:
2547 + path: "."
2548 + ref: "09b5adc5be7a27c349a36b73d0d616b133ad8730"
2549 + resolved-ref: "09b5adc5be7a27c349a36b73d0d616b133ad8730"
2550 + url: "https://github.com/a14n/dart-rational"
2551 + source: git
2552 + version: "2.2.3"
2553 + record_use:
2554 + dependency: "direct overridden"
2555 + description:
2556 + path: "pkgs/record_use"
2557 + ref: abe17706806e8aa3cdafcbdab02cbbb5d1d2f884
2558 + resolved-ref: abe17706806e8aa3cdafcbdab02cbbb5d1d2f884
2559 + url: "https://github.com/dart-lang/native"
2560 + source: git
2561 + version: "0.6.0"
2562 + reown_core:
2563 + dependency: transitive
2564 + description:
2565 + path: "scripts/reown_flutter/packages/reown_core"
2566 + relative: true
2567 + source: path
2568 + version: "1.2.1"
2569 + reown_sign:
2570 + dependency: transitive
2571 + description:
2572 + path: "scripts/reown_flutter/packages/reown_sign"
2573 + relative: true
2574 + source: path
2575 + version: "1.2.0"
2576 + reown_walletkit:
2577 + dependency: "direct main"
2578 + description:
2579 + path: "scripts/reown_flutter/packages/reown_walletkit"
2580 + relative: true
2581 + source: path
2582 + version: "1.2.0"
2583 + reown_yttrium:
2584 + dependency: transitive
2585 + description:
2586 + path: "scripts/reown_flutter/packages/reown_yttrium"
2587 + relative: true
2588 + source: path
2589 + version: "0.0.1"
2590 + rive:
2591 + dependency: "direct overridden"
2592 + description:
2593 + path: "."
2594 + ref: "2dbfe918a3d38340f378ab2734b1c97ebcb4ab26"
2595 + resolved-ref: "2dbfe918a3d38340f378ab2734b1c97ebcb4ab26"
2596 + url: "https://github.com/MrCyjaneK/rive-flutter-no-lfs"
2597 + source: git
2598 + version: "0.13.20"
2599 + rive_common:
2600 + dependency: "direct overridden"
2601 + description:
2602 + path: "."
2603 + ref: "9457422fce3f1524437f6a1429200f048931a2fe"
2604 + resolved-ref: "9457422fce3f1524437f6a1429200f048931a2fe"
2605 + url: "https://github.com/MrCyjaneK/rive_common"
2606 + source: git
2607 + version: "0.4.15"
2608 + riverpod:
2609 + dependency: "direct overridden"
2610 + description:
2611 + path: "packages/riverpod"
2612 + ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
2613 + resolved-ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
2614 + url: "https://github.com/rrousselGit/riverpod"
2615 + source: git
2616 + version: "3.3.2"
2617 + riverpod_annotation:
2618 + dependency: "direct overridden"
2619 + description:
2620 + path: "packages/riverpod_annotation"
2621 + ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
2622 + resolved-ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
2623 + url: "https://github.com/rrousselGit/riverpod"
2624 + source: git
2625 + version: "4.0.3"
2626 + rlz:
2627 + dependency: "direct overridden"
2628 + description:
2629 + path: rust_builder
2630 + ref: "36e72b530c274c4a54a6127aadb94886e84d67bf"
2631 + resolved-ref: "36e72b530c274c4a54a6127aadb94886e84d67bf"
2632 + url: "https://github.com/cake-tech/zkool2.git"
2633 + source: git
2634 + version: "0.0.1"
2635 + rxdart:
2636 + dependency: "direct main"
2637 + description:
2638 + path: "packages/rxdart"
2639 + ref: "6852efa646198d8a75fcaee52a5227682f8016e7"
2640 + resolved-ref: "6852efa646198d8a75fcaee52a5227682f8016e7"
2641 + url: "https://github.com/ReactiveX/rxdart"
2642 + source: git
2643 + version: "0.28.0"
2644 + searchable_listview:
2645 + dependency: "direct overridden"
2646 + description:
2647 + path: "."
2648 + ref: "87c203ac2737c3103929e2a2cd0f23becc4c3334"
2649 + resolved-ref: "87c203ac2737c3103929e2a2cd0f23becc4c3334"
2650 + url: "https://github.com/koukibadr/Searchable-Listview"
2651 + source: git
2652 + version: "2.19.5"
2653 + sec:
2654 + dependency: "direct overridden"
2655 + description:
2656 + path: "."
2657 + ref: "1a53c7983d0e8b5e3842eff85cebc27fd474d8f0"
2658 + resolved-ref: "1a53c7983d0e8b5e3842eff85cebc27fd474d8f0"
2659 + url: "https://github.com/xclud/dart_sec"
2660 + source: git
2661 + version: "1.1.0"
2662 + sensitive_clipboard:
2663 + dependency: "direct main"
2664 + description:
2665 + path: "."
2666 + ref: "288c7ee2d63b459bc735f7dc89321b29a1f12fae"
2667 + resolved-ref: "288c7ee2d63b459bc735f7dc89321b29a1f12fae"
2668 + url: "https://github.com/cake-tech/sensitive_clipboard"
2669 + source: git
2670 + version: "1.0.0"
2671 + sha3:
2672 + dependency: "direct overridden"
2673 + description:
2674 + path: "."
2675 + ref: "6d879eb52dec2b5e110d11957f5512ceb0eaa664"
2676 + resolved-ref: "6d879eb52dec2b5e110d11957f5512ceb0eaa664"
2677 + url: "https://github.com/maoxs2/dart_sha3"
2678 + source: git
2679 + version: "0.2.1"
2680 + share_plus:
2681 + dependency: "direct main"
2682 + description:
2683 + path: "packages/share_plus/share_plus"
2684 + ref: "8e5fab7bfb1685f5a56f53020a49b2ff5bece25d"
2685 + resolved-ref: "8e5fab7bfb1685f5a56f53020a49b2ff5bece25d"
2686 + url: "https://github.com/fluttercommunity/plus_plugins"
2687 + source: git
2688 + version: "10.1.4"
2689 + share_plus_platform_interface:
2690 + dependency: "direct overridden"
2691 + description:
2692 + path: "packages/share_plus/share_plus_platform_interface"
2693 + ref: b5d24a0e3927314e50be041c9f5b7da487d69313
2694 + resolved-ref: b5d24a0e3927314e50be041c9f5b7da487d69313
2695 + url: "https://github.com/fluttercommunity/plus_plugins"
2696 + source: git
2697 + version: "5.0.2"
2698 + shared_preferences:
2699 + dependency: "direct main"
2700 + description:
2701 + path: "packages/shared_preferences/shared_preferences"
2702 + ref: "064b0b26568728342a550dc876b0a0e0f2fbaa84"
2703 + resolved-ref: "064b0b26568728342a550dc876b0a0e0f2fbaa84"
2704 + url: "https://github.com/flutter/packages"
2705 + source: git
2706 + version: "2.5.3"
2707 + shared_preferences_android:
2708 + dependency: "direct main"
2709 + description:
2710 + path: "packages/shared_preferences/shared_preferences_android"
2711 + ref: "371106fe7d9864a157fc9366f57d0b0e64fab932"
2712 + resolved-ref: "371106fe7d9864a157fc9366f57d0b0e64fab932"
2713 + url: "https://github.com/flutter/packages"
2714 + source: git
2715 + version: "2.4.23"
2716 + shared_preferences_foundation:
2717 + dependency: "direct overridden"
2718 + description:
2719 + path: "packages/shared_preferences/shared_preferences_foundation"
2720 + ref: "18b9cc5f2b0820cb6164f0150958ba76db75c61a"
2721 + resolved-ref: "18b9cc5f2b0820cb6164f0150958ba76db75c61a"
2722 + url: "https://github.com/flutter/packages"
2723 + source: git
2724 + version: "2.5.6"
2725 + shared_preferences_linux:
2726 + dependency: "direct overridden"
2727 + description:
2728 + path: "packages/shared_preferences/shared_preferences_linux"
2729 + ref: cdd6e1368ffdf6a4fc9c0c11b72cfc5388f90f2d
2730 + resolved-ref: cdd6e1368ffdf6a4fc9c0c11b72cfc5388f90f2d
2731 + url: "https://github.com/flutter/packages"
2732 + source: git
2733 + version: "2.4.1"
2734 + shared_preferences_platform_interface:
2735 + dependency: "direct overridden"
2736 + description:
2737 + path: "packages/shared_preferences/shared_preferences_platform_interface"
2738 + ref: "371106fe7d9864a157fc9366f57d0b0e64fab932"
2739 + resolved-ref: "371106fe7d9864a157fc9366f57d0b0e64fab932"
2740 + url: "https://github.com/flutter/packages"
2741 + source: git
2742 + version: "2.4.2"
2743 + shared_preferences_web:
2744 + dependency: "direct overridden"
2745 + description:
2746 + path: "packages/shared_preferences/shared_preferences_web"
2747 + ref: cb4fb13e19756cbbcb523bc33fbf7b7a5923e787
2748 + resolved-ref: cb4fb13e19756cbbcb523bc33fbf7b7a5923e787
2749 + url: "https://github.com/flutter/packages"
2750 + source: git
2751 + version: "2.4.3"
2752 + shared_preferences_windows:
2753 + dependency: "direct overridden"
2754 + description:
2755 + path: "packages/shared_preferences/shared_preferences_windows"
2756 + ref: cdd6e1368ffdf6a4fc9c0c11b72cfc5388f90f2d
2757 + resolved-ref: cdd6e1368ffdf6a4fc9c0c11b72cfc5388f90f2d
2758 + url: "https://github.com/flutter/packages"
2759 + source: git
2760 + version: "2.4.1"
2761 + shelf:
2762 + dependency: "direct overridden"
2763 + description:
2764 + path: "pkgs/shelf"
2765 + ref: "2536c15a562cb183dabbc628824a215663830325"
2766 + resolved-ref: "2536c15a562cb183dabbc628824a215663830325"
2767 + url: "https://github.com/dart-lang/shelf"
2768 + source: git
2769 + version: "1.4.2"
2770 + shelf_packages_handler:
2771 + dependency: "direct overridden"
2772 + description:
2773 + path: "pkgs/shelf_packages_handler"
2774 + ref: "25861e55406c1f66cce066b6ed575f420b480e45"
2775 + resolved-ref: "25861e55406c1f66cce066b6ed575f420b480e45"
2776 + url: "https://github.com/dart-lang/shelf"
2777 + source: git
2778 + version: "3.0.2"
2779 + shelf_static:
2780 + dependency: "direct overridden"
2781 + description:
2782 + path: "pkgs/shelf_static"
2783 + ref: d53a8f9a98ccbe69078d397d45c2c6b3e7c243b6
2784 + resolved-ref: d53a8f9a98ccbe69078d397d45c2c6b3e7c243b6
2785 + url: "https://github.com/dart-lang/shelf"
2786 + source: git
2787 + version: "1.1.3"
2788 + shelf_web_socket:
2789 + dependency: "direct overridden"
2790 + description:
2791 + path: "pkgs/shelf_web_socket"
2792 + ref: "2a7442f7d6d3e63fdc7b387128619b263dcb7e78"
2793 + resolved-ref: "2a7442f7d6d3e63fdc7b387128619b263dcb7e78"
2794 + url: "https://github.com/dart-lang/shelf"
2795 + source: git
2796 + version: "3.0.0"
2797 + sky_engine:
2798 + dependency: transitive
2799 + description: flutter
2800 + source: sdk
2801 + version: "0.0.0"
2802 + smooth_page_indicator:
2803 + dependency: "direct main"
2804 + description:
2805 + path: "."
2806 + ref: "519df3304d58c9d77e91725318076bc3aaa6e852"
2807 + resolved-ref: "519df3304d58c9d77e91725318076bc3aaa6e852"
2808 + url: "https://github.com/Milad-Akarie/smooth_page_indicator"
2809 + source: git
2810 + version: "1.2.1"
2811 + socks5_proxy:
2812 + dependency: "direct main"
2813 + description:
2814 + path: "."
2815 + ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
2816 + resolved-ref: "27ad7c2efae8d7460325c74b90f660085cbd0685"
2817 + url: "https://github.com/LacticWhale/socks_dart.git"
2818 + source: git
2819 + version: "2.1.0"
2820 + socks_socket:
2821 + dependency: "direct overridden"
2822 + description:
2823 + path: "."
2824 + ref: e6232c53c1595469931ababa878759a067c02e94
2825 + resolved-ref: e6232c53c1595469931ababa878759a067c02e94
2826 + url: "https://github.com/sneurlax/socks_socket"
2827 + source: git
2828 + version: "1.1.1"
2829 + solana:
2830 + dependency: "direct main"
2831 + description:
2832 + path: "packages/solana"
2833 + ref: ab60e9d4c7d7271037597154ad2a835812054ed6
2834 + resolved-ref: ab60e9d4c7d7271037597154ad2a835812054ed6
2835 + url: "https://github.com/espresso-cash/espresso-cash-public"
2836 + source: git
2837 + version: "0.31.2+1"
2838 + source_gen:
2839 + dependency: "direct overridden"
2840 + description:
2841 + path: source_gen
2842 + ref: "98cbdb6b17cdccabb0fec6e37fd66e2790d05092"
2843 + resolved-ref: "98cbdb6b17cdccabb0fec6e37fd66e2790d05092"
2844 + url: "https://github.com/dart-lang/source_gen"
2845 + source: git
2846 + version: "4.2.4"
2847 + source_map_stack_trace:
2848 + dependency: "direct overridden"
2849 + description:
2850 + path: "pkgs/source_map_stack_trace"
2851 + ref: "56db6f3d085fa4e70b0286b30989654a5db90c94"
2852 + resolved-ref: "56db6f3d085fa4e70b0286b30989654a5db90c94"
2853 + url: "https://github.com/dart-lang/tools"
2854 + source: git
2855 + version: "2.1.2"
2856 + source_maps:
2857 + dependency: "direct overridden"
2858 + description:
2859 + path: "pkgs/source_maps"
2860 + ref: db47a844e03cbd076ac7e5a0f4f46cadcba28da8
2861 + resolved-ref: db47a844e03cbd076ac7e5a0f4f46cadcba28da8
2862 + url: "https://github.com/dart-lang/tools"
2863 + source: git
2864 + version: "0.10.13"
2865 + source_span:
2866 + dependency: "direct overridden"
2867 + description:
2868 + path: "pkgs/source_span"
2869 + ref: e501121027c0a9014161ff79cbf519c1813e3153
2870 + resolved-ref: e501121027c0a9014161ff79cbf519c1813e3153
2871 + url: "https://github.com/dart-lang/tools"
2872 + source: git
2873 + version: "1.10.2"
2874 + sp_scanner:
2875 + dependency: "direct overridden"
2876 + description:
2877 + path: "."
2878 + ref: "40ed3ce8319744907bef3b25bc6e0af8428c8724"
2879 + resolved-ref: "40ed3ce8319744907bef3b25bc6e0af8428c8724"
2880 + url: "https://github.com/cake-tech/sp_scanner"
2881 + source: git
2882 + version: "0.0.1"
2883 + sqflite:
2884 + dependency: "direct overridden"
2885 + description:
2886 + path: sqflite
2887 + ref: "094cc31b82df7f9ba04f330f13b50e345f777079"
2888 + resolved-ref: "094cc31b82df7f9ba04f330f13b50e345f777079"
2889 + url: "https://github.com/tekartik/sqflite"
2890 + source: git
2891 + version: "2.4.2+1"
2892 + sqflite_android:
2893 + dependency: "direct overridden"
2894 + description:
2895 + path: sqflite_android
2896 + ref: "7e7159b59572e04024258417072428d1cffca1cc"
2897 + resolved-ref: "7e7159b59572e04024258417072428d1cffca1cc"
2898 + url: "https://github.com/tekartik/sqflite"
2899 + source: git
2900 + version: "2.4.2+3"
2901 + sqflite_common:
2902 + dependency: "direct overridden"
2903 + description:
2904 + path: sqflite_common
2905 + ref: "018def1518b3ce9efcb25bbf57809153e9252da7"
2906 + resolved-ref: "018def1518b3ce9efcb25bbf57809153e9252da7"
2907 + url: "https://github.com/tekartik/sqflite"
2908 + source: git
2909 + version: "2.5.8"
2910 + sqflite_common_ffi:
2911 + dependency: "direct overridden"
2912 + description:
2913 + path: sqflite_common_ffi
2914 + ref: "7482da6f456feb715eecdff8a6287bb30d01481f"
2915 + resolved-ref: "7482da6f456feb715eecdff8a6287bb30d01481f"
2916 + url: "https://github.com/tekartik/sqflite"
2917 + source: git
2918 + version: "2.4.0+3"
2919 + sqflite_darwin:
2920 + dependency: "direct overridden"
2921 + description:
2922 + path: sqflite_darwin
2923 + ref: e2d87c863f33e8981dfb589d4784ab14d8f5cc77
2924 + resolved-ref: e2d87c863f33e8981dfb589d4784ab14d8f5cc77
2925 + url: "https://github.com/tekartik/sqflite"
2926 + source: git
2927 + version: "2.4.2"
2928 + sqflite_platform_interface:
2929 + dependency: "direct overridden"
2930 + description:
2931 + path: sqflite_platform_interface
2932 + ref: "03e86a1aa7f8ebea7c40d2b02248cadc7630c2f0"
2933 + resolved-ref: "03e86a1aa7f8ebea7c40d2b02248cadc7630c2f0"
2934 + url: "https://github.com/tekartik/sqflite"
2935 + source: git
2936 + version: "2.4.0"
2937 + sqlite3:
2938 + dependency: "direct overridden"
2939 + description:
2940 + path: sqlite3
2941 + ref: ac40b296e7069c4e83503bcbe4a3b22dfe5431a7
2942 + resolved-ref: ac40b296e7069c4e83503bcbe4a3b22dfe5431a7
2943 + url: "https://github.com/simolus3/sqlite3.dart"
2944 + source: git
2945 + version: "3.5.1"
2946 + sqlite3_flutter_libs:
2947 + dependency: "direct overridden"
2948 + description:
2949 + path: sqlite3_flutter_libs
2950 + ref: "808a60becaa3f9fae41e0590b853c3283b5f6afb"
2951 + resolved-ref: "808a60becaa3f9fae41e0590b853c3283b5f6afb"
2952 + url: "https://github.com/simolus3/sqlite3.dart"
2953 + source: git
2954 + version: "0.5.40"
2955 + stack_trace:
2956 + dependency: "direct overridden"
2957 + description:
2958 + path: "pkgs/stack_trace"
2959 + ref: "07648c8269244506d83c15dc8cc50aa53d24bf35"
2960 + resolved-ref: "07648c8269244506d83c15dc8cc50aa53d24bf35"
2961 + url: "https://github.com/dart-lang/tools"
2962 + source: git
2963 + version: "1.12.1"
2964 + state_notifier:
2965 + dependency: "direct overridden"
2966 + description:
2967 + path: "packages/state_notifier"
2968 + ref: "061abfc682881d5da4716b211cd4e7d41805a9ac"
2969 + resolved-ref: "061abfc682881d5da4716b211cd4e7d41805a9ac"
2970 + url: "https://github.com/rrousselGit/state_notifier"
2971 + source: git
2972 + version: "1.0.0"
2973 + stream_channel:
2974 + dependency: "direct overridden"
2975 + description:
2976 + path: "pkgs/stream_channel"
2977 + ref: "5265a85f307ce7be94553378589205df97736a1b"
2978 + resolved-ref: "5265a85f307ce7be94553378589205df97736a1b"
2979 + url: "https://github.com/dart-lang/tools"
2980 + source: git
2981 + version: "2.1.4"
2982 + stream_transform:
2983 + dependency: "direct overridden"
2984 + description:
2985 + path: "pkgs/stream_transform"
2986 + ref: "46cc745458f93bdbd39972a925d7530e57f84f5c"
2987 + resolved-ref: "46cc745458f93bdbd39972a925d7530e57f84f5c"
2988 + url: "https://github.com/dart-lang/tools"
2989 + source: git
2990 + version: "2.1.1"
2991 + string_scanner:
2992 + dependency: "direct overridden"
2993 + description:
2994 + path: "pkgs/string_scanner"
2995 + ref: "3815ff3fd2aee5212586c3fc4d2bcf08584c98f3"
2996 + resolved-ref: "3815ff3fd2aee5212586c3fc4d2bcf08584c98f3"
2997 + url: "https://github.com/dart-lang/tools"
2998 + source: git
2999 + version: "1.4.1"
3000 + sync_http:
3001 + dependency: "direct overridden"
3002 + description:
3003 + path: "."
3004 + ref: "39509d69fd5a9c3da46eab48fcafdf62e6ad4580"
3005 + resolved-ref: "39509d69fd5a9c3da46eab48fcafdf62e6ad4580"
3006 + url: "https://github.com/google/sync_http.dart"
3007 + source: git
3008 + version: "0.3.1"
3009 + synchronized:
3010 + dependency: "direct overridden"
3011 + description:
3012 + path: synchronized
3013 + ref: b38010355b23e3baed85e263ca7f9e222d57b00a
3014 + resolved-ref: b38010355b23e3baed85e263ca7f9e222d57b00a
3015 + url: "https://github.com/tekartik/synchronized.dart"
3016 + source: git
3017 + version: "3.4.0+1"
3018 + term_glyph:
3019 + dependency: "direct overridden"
3020 + description:
3021 + path: "pkgs/term_glyph"
3022 + ref: c90e95b1f2a130b2e951466719b28c3d13b8dab5
3023 + resolved-ref: c90e95b1f2a130b2e951466719b28c3d13b8dab5
3024 + url: "https://github.com/dart-lang/tools"
3025 + source: git
3026 + version: "1.2.2"
3027 + test:
3028 + dependency: "direct overridden"
3029 + description:
3030 + path: "pkgs/test"
3031 + ref: "45e4ef287d70dad449f13d4f284f9faea2d9188b"
3032 + resolved-ref: "45e4ef287d70dad449f13d4f284f9faea2d9188b"
3033 + url: "https://github.com/dart-lang/test"
3034 + source: git
3035 + version: "1.30.0"
3036 + test_api:
3037 + dependency: "direct overridden"
3038 + description:
3039 + path: "pkgs/test_api"
3040 + ref: "45e4ef287d70dad449f13d4f284f9faea2d9188b"
3041 + resolved-ref: "45e4ef287d70dad449f13d4f284f9faea2d9188b"
3042 + url: "https://github.com/dart-lang/test"
3043 + source: git
3044 + version: "0.7.10"
3045 + test_core:
3046 + dependency: "direct overridden"
3047 + description:
3048 + path: "pkgs/test_core"
3049 + ref: "45e4ef287d70dad449f13d4f284f9faea2d9188b"
3050 + resolved-ref: "45e4ef287d70dad449f13d4f284f9faea2d9188b"
3051 + url: "https://github.com/dart-lang/test"
3052 + source: git
3053 + version: "0.6.16"
3054 + timezone:
3055 + dependency: "direct overridden"
3056 + description:
3057 + path: "."
3058 + ref: "64db18e450c10247e23ee36546865007b01cf135"
3059 + resolved-ref: "64db18e450c10247e23ee36546865007b01cf135"
3060 + url: "https://github.com/srawlins/timezone"
3061 + source: git
3062 + version: "0.10.1"
3063 + toastification:
3064 + dependency: "direct overridden"
3065 + description:
3066 + path: "."
3067 + ref: "4f1068f5265a0d189aee6881d125e8a35adec74f"
3068 + resolved-ref: "4f1068f5265a0d189aee6881d125e8a35adec74f"
3069 + url: "https://github.com/payam-zahedi/toastification"
3070 + source: git
3071 + version: "3.2.0"
3072 + torch_dart:
3073 + dependency: "direct main"
3074 + description:
3075 + path: "scripts/torch_dart"
3076 + relative: true
3077 + source: path
3078 + version: "0.0.1"
3079 + translator:
3080 + dependency: "direct dev"
3081 + description:
3082 + path: "."
3083 + ref: b36571ec11efd838afda010adcc21a4e95302745
3084 + resolved-ref: b36571ec11efd838afda010adcc21a4e95302745
3085 + url: "https://github.com/cake-tech/google-translator.git"
3086 + source: git
3087 + version: "1.0.0"
3088 + trezor_connect:
3089 + dependency: "direct main"
3090 + description:
3091 + path: "."
3092 + ref: d1242cea90f84b00200e7bcab914a5af750e23fb
3093 + resolved-ref: d1242cea90f84b00200e7bcab914a5af750e23fb
3094 + url: "https://github.com/cake-tech/trezor_connect"
3095 + source: git
3096 + version: "0.0.1"
3097 + trezor_flutter:
3098 + dependency: "direct overridden"
3099 + description:
3100 + path: trezor-flutter
3101 + ref: "7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97"
3102 + resolved-ref: "7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97"
3103 + url: "https://github.com/cake-tech/trezor-flutter.git"
3104 + source: git
3105 + version: "0.1.0"
3106 + trezor_usb_transport:
3107 + dependency: "direct overridden"
3108 + description:
3109 + path: trezor_usb_transport
3110 + ref: "7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97"
3111 + resolved-ref: "7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97"
3112 + url: "https://github.com/cake-tech/trezor-flutter.git"
3113 + source: git
3114 + version: "0.0.1"
3115 + tuple:
3116 + dependency: "direct overridden"
3117 + description:
3118 + path: "."
3119 + ref: "91bcce6e0672c4b071d270aafde5cd86103668dd"
3120 + resolved-ref: "91bcce6e0672c4b071d270aafde5cd86103668dd"
3121 + url: "https://github.com/google/tuple.dart"
3122 + source: git
3123 + version: "2.0.2"
3124 + typed_data:
3125 + dependency: "direct overridden"
3126 + description:
3127 + path: "pkgs/typed_data"
3128 + ref: "5ed932323581a4791672c25fe154c622b535c264"
3129 + resolved-ref: "5ed932323581a4791672c25fe154c622b535c264"
3130 + url: "https://github.com/dart-lang/core"
3131 + source: git
3132 + version: "1.4.0"
3133 + uni_links:
3134 + dependency: "direct main"
3135 + description:
3136 + path: uni_links
3137 + ref: "1989db3f5d625e2fffbad7b85a3b1b8c78c6dfa1"
3138 + resolved-ref: "1989db3f5d625e2fffbad7b85a3b1b8c78c6dfa1"
3139 + url: "https://github.com/cake-tech/uni_links"
3140 + source: git
3141 + version: "0.5.1"
3142 + uni_links_platform_interface:
3143 + dependency: "direct overridden"
3144 + description:
3145 + path: uni_links_platform_interface
3146 + ref: cdd7a217d351a32c418afad18f8ea6893cfed05a
3147 + resolved-ref: cdd7a217d351a32c418afad18f8ea6893cfed05a
3148 + url: "https://github.com/avioli/uni_links"
3149 + source: git
3150 + version: "1.0.0"
3151 + uni_links_web:
3152 + dependency: "direct overridden"
3153 + description:
3154 + path: uni_links_web
3155 + ref: cf9d2b64dc3e890015d1dd6df7b6414123835663
3156 + resolved-ref: cf9d2b64dc3e890015d1dd6df7b6414123835663
3157 + url: "https://github.com/avioli/uni_links"
3158 + source: git
3159 + version: "0.1.0"
3160 + universal_ble:
3161 + dependency: "direct overridden"
3162 + description:
3163 + path: "."
3164 + ref: 6735c1bdf7f42c501d51c20564eb957c3a12b981
3165 + resolved-ref: 6735c1bdf7f42c501d51c20564eb957c3a12b981
3166 + url: "https://github.com/cake-tech/universal_ble.git"
3167 + source: git
3168 + version: "2.0.0"
3169 + universal_io:
3170 + dependency: "direct overridden"
3171 + description:
3172 + path: "."
3173 + ref: ed92942d149674621e7ae4ac46325e55ecee9368
3174 + resolved-ref: ed92942d149674621e7ae4ac46325e55ecee9368
3175 + url: "https://github.com/dart-io-packages/universal_io"
3176 + source: git
3177 + version: "2.3.1"
3178 + universal_platform:
3179 + dependency: "direct overridden"
3180 + description:
3181 + path: "."
3182 + ref: f4fc405630cdd541d78457b0b4521b89456ea068
3183 + resolved-ref: f4fc405630cdd541d78457b0b4521b89456ea068
3184 + url: "https://github.com/gskinnerTeam/flutter-universal-platform"
3185 + source: git
3186 + version: "1.1.0"
3187 + unorm_dart:
3188 + dependency: "direct overridden"
3189 + description:
3190 + path: "."
3191 + ref: "3301bdc74e9644c69201db31e0daefb24fd10cd8"
3192 + resolved-ref: "3301bdc74e9644c69201db31e0daefb24fd10cd8"
3193 + url: "https://github.com/yshrsmz/unorm-dart"
3194 + source: git
3195 + version: "0.3.2"
3196 + ur:
3197 + dependency: "direct main"
3198 + description:
3199 + path: "."
3200 + ref: "5738f70d0ec3d50977ac3dd01fed62939600238b"
3201 + resolved-ref: "5738f70d0ec3d50977ac3dd01fed62939600238b"
3202 + url: "https://github.com/bukata-sa/bc-ur-dart"
3203 + source: git
3204 + version: "0.1.0"
3205 + url_launcher:
3206 + dependency: "direct main"
3207 + description:
3208 + path: "packages/url_launcher/url_launcher"
3209 + ref: "3fe6a0149acebc9cb8707cf508d13f59fc372986"
3210 + resolved-ref: "3fe6a0149acebc9cb8707cf508d13f59fc372986"
3211 + url: "https://github.com/flutter/packages"
3212 + source: git
3213 + version: "6.3.2"
3214 + url_launcher_android:
3215 + dependency: "direct main"
3216 + description:
3217 + path: "packages/url_launcher/url_launcher_android"
3218 + ref: "7287c7b7f1d51e8842f49df46dbd0af3bd1c1077"
3219 + resolved-ref: "7287c7b7f1d51e8842f49df46dbd0af3bd1c1077"
3220 + url: "https://github.com/flutter/packages"
3221 + source: git
3222 + version: "6.3.14"
3223 + url_launcher_ios:
3224 + dependency: "direct overridden"
3225 + description:
3226 + path: "packages/url_launcher/url_launcher_ios"
3227 + ref: "9cac0573363b7bbe6bf32aca44582fb75ee67521"
3228 + resolved-ref: "9cac0573363b7bbe6bf32aca44582fb75ee67521"
3229 + url: "https://github.com/flutter/packages"
3230 + source: git
3231 + version: "6.4.1"
3232 + url_launcher_linux:
3233 + dependency: "direct main"
3234 + description:
3235 + path: "packages/url_launcher/url_launcher_linux"
3236 + ref: "73d2f3eb966d36a44cbb943ea0e96dda3a2f8da2"
3237 + resolved-ref: "73d2f3eb966d36a44cbb943ea0e96dda3a2f8da2"
3238 + url: "https://github.com/flutter/packages"
3239 + source: git
3240 + version: "3.1.1"
3241 + url_launcher_macos:
3242 + dependency: "direct overridden"
3243 + description:
3244 + path: "packages/url_launcher/url_launcher_macos"
3245 + ref: "18b9cc5f2b0820cb6164f0150958ba76db75c61a"
3246 + resolved-ref: "18b9cc5f2b0820cb6164f0150958ba76db75c61a"
3247 + url: "https://github.com/flutter/packages"
3248 + source: git
3249 + version: "3.2.5"
3250 + url_launcher_platform_interface:
3251 + dependency: "direct overridden"
3252 + description:
3253 + path: "packages/url_launcher/url_launcher_platform_interface"
3254 + ref: ef349bec8ee9d5fa3f69d73aa78ab9bb84ae0aa7
3255 + resolved-ref: ef349bec8ee9d5fa3f69d73aa78ab9bb84ae0aa7
3256 + url: "https://github.com/flutter/packages"
3257 + source: git
3258 + version: "2.3.2"
3259 + url_launcher_web:
3260 + dependency: "direct overridden"
3261 + description:
3262 + path: "packages/url_launcher/url_launcher_web"
3263 + ref: "67ec0d36293eb963590e0606c8bede379be4d142"
3264 + resolved-ref: "67ec0d36293eb963590e0606c8bede379be4d142"
3265 + url: "https://github.com/flutter/packages"
3266 + source: git
3267 + version: "2.4.3"
3268 + url_launcher_windows:
3269 + dependency: "direct overridden"
3270 + description:
3271 + path: "packages/url_launcher/url_launcher_windows"
3272 + ref: "18b9cc5f2b0820cb6164f0150958ba76db75c61a"
3273 + resolved-ref: "18b9cc5f2b0820cb6164f0150958ba76db75c61a"
3274 + url: "https://github.com/flutter/packages"
3275 + source: git
3276 + version: "3.1.5"
3277 + uuid:
3278 + dependency: "direct overridden"
3279 + description:
3280 + path: "."
3281 + ref: d602950818e4b11d097d26f5408b461f38248130
3282 + resolved-ref: d602950818e4b11d097d26f5408b461f38248130
3283 + url: "https://github.com/Daegalus/dart-uuid"
3284 + source: git
3285 + version: "4.6.0"
3286 + vector_graphics:
3287 + dependency: "direct overridden"
3288 + description:
3289 + path: "packages/vector_graphics"
3290 + ref: caddb39d831fc9e7f9a2cbe5c87d75629adc35ac
3291 + resolved-ref: caddb39d831fc9e7f9a2cbe5c87d75629adc35ac
3292 + url: "https://github.com/flutter/packages"
3293 + source: git
3294 + version: "1.2.3"
3295 + vector_graphics_codec:
3296 + dependency: "direct overridden"
3297 + description:
3298 + path: "packages/vector_graphics_codec"
3299 + ref: "11a9fa8bf6e5a49d02aef0ba5c5a95037a2acbc3"
3300 + resolved-ref: "11a9fa8bf6e5a49d02aef0ba5c5a95037a2acbc3"
3301 + url: "https://github.com/flutter/packages"
3302 + source: git
3303 + version: "1.1.13"
3304 + vector_graphics_compiler:
3305 + dependency: "direct overridden"
3306 + description:
3307 + path: "packages/vector_graphics_compiler"
3308 + ref: "3d05e51b22d99c5362d2f1f7f5b80358dd4e9cb3"
3309 + resolved-ref: "3d05e51b22d99c5362d2f1f7f5b80358dd4e9cb3"
3310 + url: "https://github.com/flutter/packages"
3311 + source: git
3312 + version: "1.3.0"
3313 + vector_math:
3314 + dependency: "direct overridden"
3315 + description:
3316 + path: "."
3317 + ref: "13f185f7e97d559e003f5ac79201da12f9a01049"
3318 + resolved-ref: "13f185f7e97d559e003f5ac79201da12f9a01049"
3319 + url: "https://github.com/google/vector_math.dart"
3320 + source: git
3321 + version: "2.2.0"
3322 + vm_service:
3323 + dependency: "direct overridden"
3324 + description:
3325 + path: "pkg/vm_service"
3326 + ref: c70f78e7d682c158c15ca0c26c729b3ccb932284
3327 + resolved-ref: c70f78e7d682c158c15ca0c26c729b3ccb932284
3328 + url: "https://github.com/dart-lang/sdk"
3329 + source: git
3330 + version: "15.1.0"
3331 + wakelock_plus:
3332 + dependency: "direct main"
3333 + description:
3334 + path: wakelock_plus
3335 + ref: e7301f64397c946fac4ee66acdfb545b666f4a43
3336 + resolved-ref: e7301f64397c946fac4ee66acdfb545b666f4a43
3337 + url: "https://github.com/fluttercommunity/wakelock_plus"
3338 + source: git
3339 + version: "1.3.3"
3340 + wakelock_plus_platform_interface:
3341 + dependency: "direct overridden"
3342 + description:
3343 + path: wakelock_plus_platform_interface
3344 + ref: "302991238a66dd1f6b1e50b38f58d97d177cd9ab"
3345 + resolved-ref: "302991238a66dd1f6b1e50b38f58d97d177cd9ab"
3346 + url: "https://github.com/fluttercommunity/wakelock_plus"
3347 + source: git
3348 + version: "1.6.0"
3349 + wallet:
3350 + dependency: "direct overridden"
3351 + description:
3352 + path: "."
3353 + ref: aa5ba16f7a8a3a7789ca78330ce3877913f29a83
3354 + resolved-ref: aa5ba16f7a8a3a7789ca78330ce3877913f29a83
3355 + url: "https://github.com/xclud/dart_wallet"
3356 + source: git
3357 + version: "0.0.13"
3358 + watcher:
3359 + dependency: "direct overridden"
3360 + description:
3361 + path: "pkgs/watcher"
3362 + ref: "67a0fea10d8402d427aca8aff95cdc3b16004fc2"
3363 + resolved-ref: "67a0fea10d8402d427aca8aff95cdc3b16004fc2"
3364 + url: "https://github.com/dart-lang/tools"
3365 + source: git
3366 + version: "1.2.1"
3367 + web:
3368 + dependency: "direct overridden"
3369 + description:
3370 + path: web
3371 + ref: "222164b5010cb0324d4132666f1d43750ffc6448"
3372 + resolved-ref: "222164b5010cb0324d4132666f1d43750ffc6448"
3373 + url: "https://github.com/dart-lang/web"
3374 + source: git
3375 + version: "1.1.1"
3376 + web3dart:
3377 + dependency: "direct overridden"
3378 + description:
3379 + path: "."
3380 + ref: aa3f932dbf54eda651b7bd01ad00204acf998bd0
3381 + resolved-ref: aa3f932dbf54eda651b7bd01ad00204acf998bd0
3382 + url: "https://github.com/cake-tech/web3dart.git"
3383 + source: git
3384 + version: "2.7.2"
3385 + web_socket:
3386 + dependency: "direct overridden"
3387 + description:
3388 + path: "pkgs/web_socket"
3389 + ref: "31da3556357cd9ba9205e20c9299a1d48c149382"
3390 + resolved-ref: "31da3556357cd9ba9205e20c9299a1d48c149382"
3391 + url: "https://github.com/dart-lang/http"
3392 + source: git
3393 + version: "1.0.1"
3394 + web_socket_channel:
3395 + dependency: "direct overridden"
3396 + description:
3397 + path: "pkgs/web_socket_channel"
3398 + ref: "63c477b466f650e8f5505d6d78dc283c2c2f9845"
3399 + resolved-ref: "63c477b466f650e8f5505d6d78dc283c2c2f9845"
3400 + url: "https://github.com/dart-lang/http"
3401 + source: git
3402 + version: "3.0.3"
3403 + webdriver:
3404 + dependency: "direct overridden"
3405 + description:
3406 + path: "."
3407 + ref: e84e9ccbee3e0c38a149b7d964eb7ab6ccc78384
3408 + resolved-ref: e84e9ccbee3e0c38a149b7d964eb7ab6ccc78384
3409 + url: "https://github.com/google/webdriver.dart"
3410 + source: git
3411 + version: "3.1.0"
3412 + webkit_inspection_protocol:
3413 + dependency: "direct overridden"
3414 + description:
3415 + path: "."
3416 + ref: "82f0c1c46dfdba5edf7c5fa84456233121dd69e1"
3417 + resolved-ref: "82f0c1c46dfdba5edf7c5fa84456233121dd69e1"
3418 + url: "https://github.com/google/webkit_inspection_protocol.dart"
3419 + source: git
3420 + version: "1.2.1"
3421 + win32:
3422 + dependency: "direct overridden"
3423 + description:
3424 + path: "packages/win32"
3425 + ref: "64b0a07ab7e1e3e7db6fca60c6b121d6cfd73709"
3426 + resolved-ref: "64b0a07ab7e1e3e7db6fca60c6b121d6cfd73709"
3427 + url: "https://github.com/halildurmus/win32"
3428 + source: git
3429 + version: "5.15.0"
3430 + win32_registry:
3431 + dependency: "direct overridden"
3432 + description:
3433 + path: "."
3434 + ref: fd20025f9b6f0ce6937b3e7e4b923e51ae11e40f
3435 + resolved-ref: fd20025f9b6f0ce6937b3e7e4b923e51ae11e40f
3436 + url: "https://github.com/halildurmus/win32_registry"
3437 + source: git
3438 + version: "1.1.5"
3439 + x25519:
3440 + dependency: "direct overridden"
3441 + description:
3442 + path: "."
3443 + ref: "61b636d53e03cd12c9d9f728f8be6821fb6e2581"
3444 + resolved-ref: "61b636d53e03cd12c9d9f728f8be6821fb6e2581"
3445 + url: "https://github.com/Tougee/curve25519"
3446 + source: git
3447 + version: "0.1.1"
3448 + xdg_directories:
3449 + dependency: "direct overridden"
3450 + description:
3451 + path: "packages/xdg_directories"
3452 + ref: b33972233ecb894f2fd3d61a74dd1c300fac10c2
3453 + resolved-ref: b33972233ecb894f2fd3d61a74dd1c300fac10c2
3454 + url: "https://github.com/flutter/packages"
3455 + source: git
3456 + version: "1.1.0"
3457 + xml:
3458 + dependency: "direct overridden"
3459 + description:
3460 + path: "."
3461 + ref: "83796f3dd0923590561d9d169d6ee2db46580099"
3462 + resolved-ref: "83796f3dd0923590561d9d169d6ee2db46580099"
3463 + url: "https://github.com/renggli/dart-xml"
3464 + source: git
3465 + version: "6.5.0"
3466 + yaml:
3467 + dependency: "direct main"
3468 + description:
3469 + path: "pkgs/yaml"
3470 + ref: "27f829e3752382beae9deb1e87029f9ed52ef32e"
3471 + resolved-ref: "27f829e3752382beae9deb1e87029f9ed52ef32e"
3472 + url: "https://github.com/dart-lang/tools"
3473 + source: git
3474 + version: "3.1.3"
3475 + yaml_edit:
3476 + dependency: "direct overridden"
3477 + description:
3478 + path: "pkgs/yaml_edit"
3479 + ref: "119a499068a903222fbbefdea18ea59efdd417b9"
3480 + resolved-ref: "119a499068a903222fbbefdea18ea59efdd417b9"
3481 + url: "https://github.com/dart-lang/tools"
3482 + source: git
3483 + version: "2.2.4"
3484 + zkool:
3485 + dependency: "direct overridden"
3486 + description:
3487 + path: "."
3488 + ref: "36e72b530c274c4a54a6127aadb94886e84d67bf"
3489 + resolved-ref: "36e72b530c274c4a54a6127aadb94886e84d67bf"
3490 + url: "https://github.com/cake-tech/zkool2.git"
3491 + source: git
3492 + version: "6.24.0"
3493 +sdks:
3494 + dart: ">=3.9.0 <4.0.0"
3495 + flutter: ">=3.19.0"
pubspec_base.yaml
+64 -47
@@ -8,8 +8,7 @@ dependencies:
8 qr_flutter:
9 git:
10 url: https://github.com/cake-tech/qr.flutter.git
11 - ref: cake-4.0.2
12 - version: 4.0.2
11 + ref: dced28909a82e1906e7c510ae8ca807a1658c898
12 shared_preferences: 2.5.3
13 # provider: ^6.0.3
14 rxdart: ^0.28.0
@@ -86,8 +85,7 @@ dependencies:
85 cake_backup:
86 git:
87 url: https://github.com/cake-tech/cake_backup.git
89 - ref: main
90 - version: 1.0.0
88 + ref: 3aba867dcab6737f6707782f5db15d71f303db38
89 flutter_plugin_android_lifecycle: 2.0.23
90 path_provider_android: ^2.2.1
91 shared_preferences_android: ^2.4.8
@@ -142,7 +140,7 @@ dependencies:
140 blockchain_utils:
141 git:
142 url: https://github.com/cake-tech/blockchain_utils
145 - ref: cake-update-v2
143 + ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
144 flutter_daemon:
145 git:
146 url: https://github.com/MrCyjaneK/flutter_daemon
@@ -182,50 +180,69 @@ dev_dependencies:
180 translator:
181 git:
182 url: https://github.com/cake-tech/google-translator.git
185 - version: 1.0.0
183 + ref: b36571ec11efd838afda010adcc21a4e95302745
184 msix: ^3.16.9
185
188 -dependency_overrides:
189 - bech32:
190 - git:
191 - url: https://github.com/cake-tech/bech32.git
192 - web3dart:
193 - git:
194 - url: https://github.com/cake-tech/web3dart.git
195 - ref: cake
196 - protobuf: ^3.1.0
197 - bitcoin_base:
198 - git:
199 - url: https://github.com/cake-tech/bitcoin_base
200 - ref: cake-update-v11
201 - ffi: 2.1.0
202 - ledger_flutter_plus:
203 - git:
204 - url: https://github.com/vespr-wallet/ledger-flutter-plus
205 - ref: eaf49764ad0863e8dec97ad30ff6aea0a1d1bd28
206 - socks5_proxy:
207 - git:
208 - url: https://github.com/LacticWhale/socks_dart.git
209 - ref: 27ad7c2efae8d7460325c74b90f660085cbd0685
210 - web_socket_channel: ^3.0.2
211 - freezed_annotation: 2.4.4
212 - intl: 0.20.2
213 - qr_flutter:
214 - git:
215 - url: https://github.com/cake-tech/qr.flutter.git
216 - ref: cake-4.0.2
217 - version: 4.0.2
218 - file_picker:
219 - git:
220 - url: https://github.com/cake-tech/flutter_file_picker.git
221 - ref: c414574bc5ac349450f601e7f72c7b9f31b4d087
222 - decimal: ^2.3.3
223 - flutter_rust_bridge: 2.11.1
224 - flutter_secure_storage_windows: 3.1.2
225 - universal_ble:
226 - git:
227 - url: https://github.com/cake-tech/universal_ble.git
228 - ref: 6735c1bdf7f42c501d51c20564eb957c3a12b981
186 +# These are required for the app to build.
187 +# Note that this comment is parsed by scripts/create_overrides.sh, so plz don't break/remove it.
188 +# dependency_overrides:
189 +# bech32:
190 +# git:
191 +# url: https://github.com/cake-tech/bech32.git
192 +# ref: 05755063b593aa6cca0a4820a318e0ce17de6192
193 +# web3dart:
194 +# git:
195 +# url: https://github.com/cake-tech/web3dart.git
196 +# ref: aa3f932dbf54eda651b7bd01ad00204acf998bd0
197 +# protobuf: ^3.1.0
198 +# bitcoin_base:
199 +# git:
200 +# url: https://github.com/cake-tech/bitcoin_base
201 +# ref: bda0e2904effa799ec835b4578cc3fc5d31caa78
202 +# ffi: 2.1.0
203 +# ledger_flutter_plus:
204 +# git:
205 +# url: https://github.com/cake-tech/ledger-flutter-plus
206 +# ref: eaf49764ad0863e8dec97ad30ff6aea0a1d1bd28
207 +# ledger_usb_plus:
208 +# git:
209 +# url: https://github.com/cake-tech/ledger-usb-plus
210 +# ref: 40af7c48cf34211ba3cc9e87dd05ed1af8a429a2
211 +# socks5_proxy:
212 +# git:
213 +# url: https://github.com/LacticWhale/socks_dart.git
214 +# ref: 27ad7c2efae8d7460325c74b90f660085cbd0685
215 +# web_socket_channel: ^3.0.2
216 +# freezed_annotation: 2.4.4
217 +# intl: 0.20.2
218 +# qr_flutter:
219 +# git:
220 +# url: https://github.com/cake-tech/qr.flutter.git
221 +# ref: dced28909a82e1906e7c510ae8ca807a1658c898
222 +# file_picker:
223 +# git:
224 +# url: https://github.com/cake-tech/flutter_file_picker.git
225 +# ref: c414574bc5ac349450f601e7f72c7b9f31b4d087
226 +# decimal: ^2.3.3
227 +# flutter_rust_bridge: 2.11.1
228 +# flutter_secure_storage_windows: 3.1.2
229 +# universal_ble:
230 +# git:
231 +# url: https://github.com/cake-tech/universal_ble.git
232 +# ref: 6735c1bdf7f42c501d51c20564eb957c3a12b981
233 +# flutter_secure_storage:
234 +# git:
235 +# url: https://github.com/cake-tech/flutter_secure_storage.git
236 +# path: flutter_secure_storage
237 +# ref: ca897a08677edb443b366352dd7412735e098e7b
238 +# blockchain_utils:
239 +# git:
240 +# url: https://github.com/cake-tech/blockchain_utils
241 +# ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
242 +# cake_backup:
243 +# git:
244 +# url: https://github.com/cake-tech/cake_backup.git
245 +# ref: 3aba867dcab6737f6707782f5db15d71f303db38
246
247 flutter_icons:
248 image_path: "assets/images/app_logo.png"
pubspec_overrides.yaml new
+1684
@@ -0,0 +1,1684 @@
1 +dependency_overrides:
2 + adaptive_number:
3 + git:
4 + url: https://github.com/lemoony/adaptive_number_dart
5 + ref: c3f06de08064acca1b04975abcd4c3977c0b5256
6 + animate_do:
7 + git:
8 + url: https://github.com/Klerith/animate_do_package
9 + ref: 94ca5c43abd93901fcd97b47102b6e5d37ce67ca
10 + animated_reorderable_list:
11 + git:
12 + url: https://github.com/canopas/animated_reorderable_list
13 + ref: 4a6810d0a912018fb0b193337f46973a478fcc4b
14 + another_flushbar:
15 + git:
16 + url: https://github.com/ideployed/another-flushbar
17 + ref: a334e8e2dfbe3d5e531b63f72164093aa399047b
18 + ansicolor:
19 + git:
20 + url: https://github.com/google/ansicolor-dart
21 + ref: 35e67e6eb2da5e6d726fadfa90ccf437981c1e65
22 + archive:
23 + git:
24 + url: https://github.com/brendan-duncan/archive
25 + ref: f01d6a340ffe24e0ef46fa682d1b6bcc7b7aef13
26 + args:
27 + git:
28 + url: https://github.com/dart-lang/core
29 + ref: 61e677100b06d56a1b3731ab1178ebf9102ecb1f
30 + path: ./pkgs/args
31 + asn1lib:
32 + git:
33 + url: https://github.com/wstrange/asn1lib
34 + ref: 1616ff662cd84301e029d1fa936acb8192a2b165
35 + async:
36 + git:
37 + url: https://github.com/dart-lang/core
38 + ref: 158d80dc6d17c7b967e655e27a859cbc1c6aa71d
39 + path: ./pkgs/async
40 + auto_size_text:
41 + git:
42 + url: https://github.com/leisim/auto_size_text
43 + ref: 2178f0821132636bc4f0dea1bc4d40a889d8249b
44 + awesome_dialog:
45 + git:
46 + url: https://github.com/marcos930807/awesomeDialogs
47 + ref: c7923f15d1d22de5c9077fff0bab6f9cc6463540
48 + base32:
49 + git:
50 + url: https://github.com/Daegalus/dart-base32
51 + ref: 6ed989354aee7865ee74f3f1802268dd81bb234d
52 + base58check:
53 + git:
54 + url: https://github.com/dartcoin/base58check
55 + ref: 240913d11885ee80506ff6f51033ddf527106086
56 + base_x:
57 + git:
58 + url: https://github.com/litaoh/base-x
59 + ref: b434cc7890337af7c04004c681018a2f32689217
60 + basic_utils:
61 + git:
62 + url: https://github.com/Ephenodrom/Dart-Basic-Utils
63 + ref: 6a5034927857a08f3bdf5a177529e361179f6dab
64 + bbqrdart:
65 + git:
66 + url: https://github.com/mrcyjanek/bbqrdart
67 + ref: e867e3d0156d0b29858100f30adc2625b9dae586
68 + bech32:
69 + git:
70 + url: https://github.com/cake-tech/bech32.git
71 + ref: 05755063b593aa6cca0a4820a318e0ce17de6192
72 + bip32:
73 + git:
74 + url: https://github.com/dart-bitcoin/bip32-dart
75 + ref: b5c6a6e891b89f92529799b42af62b8a8af09eaf
76 + bip340:
77 + git:
78 + url: https://github.com/fiatjaf/dart-bip340
79 + ref: bbab1a01b6b6ab7c18f26294febb3bee38b24798
80 + bip39:
81 + git:
82 + url: https://github.com/anicdh/bip39
83 + ref: 3633daa2026b98c523ae9a091322be2903f7a8ab
84 + bitbox:
85 + git:
86 + url: https://github.com/cake-tech/bitbox-flutter.git
87 + ref: 57b78afb85bd2c30d3cdb9f7884f3878a62be442
88 + bitcoin_base:
89 + git:
90 + url: https://github.com/cake-tech/bitcoin_base
91 + ref: bda0e2904effa799ec835b4578cc3fc5d31caa78
92 + bloc:
93 + git:
94 + url: https://github.com/felangel/bloc
95 + ref: 60892540c1faec3fd01cc8c8fea378a59cf42e3d
96 + path: ./packages/bloc
97 + bloc_concurrency:
98 + git:
99 + url: https://github.com/felangel/bloc
100 + ref: 13dbe0ce078e7efaebb54b37489879daeb57459d
101 + path: ./packages/bloc_concurrency
102 + blockchain_utils:
103 + git:
104 + url: https://github.com/cake-tech/blockchain_utils
105 + ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
106 + bluez:
107 + git:
108 + url: https://github.com/canonical/bluez.dart
109 + ref: f02727e93b61585ea6c5a6a18ebf84b7374a71d3
110 + boolean_selector:
111 + git:
112 + url: https://github.com/dart-lang/tools
113 + ref: b1312b18df67b0be3101ca15c03dfd8d7c9383bb
114 + path: ./pkgs/boolean_selector
115 + borsh_annotation:
116 + git:
117 + url: https://github.com/espresso-cash/espresso-cash-public
118 + ref: ab60e9d4c7d7271037597154ad2a835812054ed6
119 + path: ./packages/borsh_annotation
120 + breez_sdk_spark_flutter:
121 + git:
122 + url: https://github.com/breez/breez-sdk-spark-flutter
123 + ref: e18b6437daaf0572de6aea2439c2ec4d22658bbb
124 + bs58:
125 + git:
126 + url: https://github.com/litaoh/base58
127 + ref: 637d7b4bef20ac4edb553ef20e40725c4a213736
128 + bs58check:
129 + git:
130 + url: https://github.com/MrCyjaneK/bs58check
131 + ref: 1216b214e26332ccc4a3de4c9eac87de7fd47b5a
132 + bubble:
133 + git:
134 + url: https://github.com/vi-k/bubble
135 + ref: 6a90afbbb8fee0dccfd7843248c74c1f8460e813
136 + buffer:
137 + git:
138 + url: https://github.com/isoos/buffer
139 + ref: 96be675b6f2bbca859a13da6c5f551ffd7eebc1c
140 + build:
141 + git:
142 + url: https://github.com/dart-lang/build
143 + ref: 565856b394c26a0d4c8cda88b69b6dcfaa2acd1f
144 + path: ./build
145 + build_cli_annotations:
146 + git:
147 + url: https://github.com/kevmoo/build_cli
148 + ref: d01ba0ba11a73b4e541ff65508ae55842a8f887f
149 + path: ./build_cli_annotations
150 + build_config:
151 + git:
152 + url: https://github.com/dart-lang/build
153 + ref: 7d6c879a01d80056b3eae52f7fab2237103a7fe7
154 + path: ./build_config
155 + build_daemon:
156 + git:
157 + url: https://github.com/dart-lang/build
158 + ref: f20f2a24e0e1259f6ee53c6828d7c396d5b23bbf
159 + path: ./build_daemon
160 + build_runner:
161 + git:
162 + url: https://github.com/dart-lang/build
163 + ref: 565856b394c26a0d4c8cda88b69b6dcfaa2acd1f
164 + path: ./build_runner
165 + built_collection:
166 + git:
167 + url: https://github.com/google/built_collection.dart
168 + ref: 8153cc41299a28e4426b22959f87dca0f7f8cd19
169 + built_value:
170 + git:
171 + url: https://github.com/google/built_value.dart
172 + ref: b66790e815350e8c569bfe723d5263925df5a46d
173 + path: ./built_value
174 + cake_backup:
175 + git:
176 + url: https://github.com/cake-tech/cake_backup.git
177 + ref: 3aba867dcab6737f6707782f5db15d71f303db38
178 + characters:
179 + git:
180 + url: https://github.com/dart-lang/core
181 + ref: b59ecf4ceebe6153e1c0166b7c9a7fdd9458a89d
182 + path: ./pkgs/characters
183 + checked_yaml:
184 + git:
185 + url: https://github.com/google/json_serializable.dart
186 + ref: d30c2fdb0598d548c25705931531842957623fdd
187 + path: ./checked_yaml
188 + cli_config:
189 + git:
190 + url: https://github.com/dart-lang/tools
191 + ref: 378790dd8cdaecd8cb48283de445f7cf80419cc0
192 + path: ./pkgs/cli_config
193 + cli_util:
194 + git:
195 + url: https://github.com/dart-lang/tools
196 + ref: d7a7e2ebba2fdc25e78000a1af08508b60beb7fc
197 + path: ./pkgs/cli_util
198 + clock:
199 + git:
200 + url: https://github.com/dart-lang/tools
201 + ref: 04f7512ab6d7d554e33abd124a41e2aeec97dcbd
202 + path: ./pkgs/clock
203 + code_assets:
204 + git:
205 + url: https://github.com/dart-lang/native
206 + ref: fca756b953bc94f109039dd553f0bc18de620338
207 + path: ./pkgs/code_assets
208 + code_builder:
209 + git:
210 + url: https://github.com/dart-lang/tools
211 + ref: 125b9a9a5556fa88ecec26f649e1cddb1623aa2f
212 + path: ./pkgs/code_builder
213 + collection:
214 + git:
215 + url: https://github.com/dart-lang/core
216 + ref: dec28c1d477cd191e2af868579817b926b07d9f5
217 + path: ./pkgs/collection
218 + connectivity_plus:
219 + git:
220 + url: https://github.com/fluttercommunity/plus_plugins
221 + ref: 9f03424b7916b195ec6a4bebe4cc1a310ba40d4a
222 + path: ./packages/connectivity_plus/connectivity_plus
223 + connectivity_plus_platform_interface:
224 + git:
225 + url: https://github.com/fluttercommunity/plus_plugins
226 + ref: c46ab89942b2be24aedf79555f247c566d99777f
227 + path: ./packages/connectivity_plus/connectivity_plus_platform_interface
228 + console:
229 + git:
230 + url: https://github.com/DirectMyFile/console.dart
231 + ref: f391b6d289490e1735566c63fe539d1c3fc40818
232 + convert:
233 + git:
234 + url: https://github.com/dart-lang/core
235 + ref: 16f396fcf87da1db940187db3564b3a490015678
236 + path: ./pkgs/convert
237 + coverage:
238 + git:
239 + url: https://github.com/dart-lang/tools
240 + ref: 176ad7aea84d9fccc5c17795568ea2165a0414f9
241 + path: ./pkgs/coverage
242 + cross_file:
243 + git:
244 + url: https://github.com/flutter/packages
245 + ref: b967797f07f1e4fc4fb264f5c8e5181b1385d9d9
246 + path: ./packages/cross_file
247 + crypto:
248 + git:
249 + url: https://github.com/dart-lang/core
250 + ref: e6c3810cdbbd6b483973f4685e950644114b495e
251 + path: ./pkgs/crypto
252 + cryptography:
253 + git:
254 + url: https://github.com/dint-dev/cryptography
255 + ref: 87f42fad6f7f120feb8e47854164016ceac3dfd0
256 + path: ./cryptography
257 + csslib:
258 + git:
259 + url: https://github.com/dart-lang/tools
260 + ref: 91a840b6bc02e5e4b57fb55a047267923b894c89
261 + path: ./pkgs/csslib
262 + cupertino_icons:
263 + git:
264 + url: https://github.com/flutter/packages
265 + ref: f330175dbf168a7bf94a127c492e025b4cc0bfba
266 + path: ./third_party/packages/cupertino_icons
267 + dart_style:
268 + git:
269 + url: https://github.com/dart-lang/dart_style
270 + ref: a0f21e86a7a0ba52f11f46e3ed2ad1144616b512
271 + dart_varuint_bitcoin:
272 + git:
273 + url: https://github.com/dart-bitcoin-lib/dart-varuint-bitcoin
274 + ref: 51f9656d5937659c9f034cb0910dd0144459f137
275 + data_table_2:
276 + git:
277 + url: https://github.com/maxim-saplin/data_table_2
278 + ref: 4db30aa145e4e831e5527708cf77d9ed4d8e9700
279 + dbus:
280 + git:
281 + url: https://github.com/canonical/dbus.dart
282 + ref: 2db8509d7f7081025e7246511e823287fdd09abc
283 + decimal:
284 + git:
285 + url: https://github.com/a14n/dart-decimal
286 + ref: bc9771127e4c26f068fc9b016269f0ddabe9b475
287 + device_display_brightness:
288 + git:
289 + url: https://github.com/MrCyjaneK/device_display_brightness.git
290 + ref: 4cac18c446ce686f3d75b1565badbd7da439bbd9
291 + device_info_plus:
292 + git:
293 + url: https://github.com/fluttercommunity/plus_plugins
294 + ref: 83f86a357da31c7e9c47ee668fe3142bafea9c91
295 + path: ./packages/device_info_plus/device_info_plus
296 + device_info_plus_platform_interface:
297 + git:
298 + url: https://github.com/fluttercommunity/plus_plugins
299 + ref: 1b37ba220c99b16693991042c3fcc69eae98864a
300 + path: ./packages/device_info_plus/device_info_plus_platform_interface
301 + devicelocale:
302 + git:
303 + url: https://github.com/magnatronus/flutter-devicelocale
304 + ref: 3ed4bcc443a40da200af162f4b97d63d7b00d291
305 + dio:
306 + git:
307 + url: https://github.com/cfug/dio
308 + ref: ef9dbb860c085a8e81ecd36d5bcf29d5672947e1
309 + path: ./dio
310 + dio_web_adapter:
311 + git:
312 + url: https://github.com/cfug/dio
313 + ref: f72e83c8e832e81169f621b13c9e39aeaf9286b8
314 + path: ./plugins/web_adapter
315 + dnssec_proof:
316 + git:
317 + url: https://github.com/MrCyjaneK/dnssec_proof.git
318 + ref: b48a9defddce036048bae02e2069ebcbd6824afc
319 + dotenv:
320 + git:
321 + url: https://github.com/mockturtl/dotenv
322 + ref: 08216384e8a03b0aa55e0fcb81f4d03a52f7ea76
323 + dotted_border:
324 + git:
325 + url: https://github.com/ajilo297/Flutter-Dotted-Border
326 + ref: a0168f4a4d410087afb378a06deb058cb92a9fb1
327 + easy_debounce:
328 + git:
329 + url: https://github.com/magnuswikhog/easy_debounce
330 + ref: ed3f2aff0f080aa21cecd86e3a7c108340a9f17d
331 + easy_stepper:
332 + git:
333 + url: https://github.com/ma7moud3osman/easy_stepper
334 + ref: cec4390aef9e5ff9fe064a44ed06b4f2c6dae1d2
335 + ed25519_edwards:
336 + git:
337 + url: https://github.com/Tougee/ed25519
338 + ref: 944daea677c4d7f3abea608f55b34aec93bb79fb
339 + ed25519_hd_key:
340 + git:
341 + url: https://github.com/alepop/dart-ed25519-hd-key
342 + ref: be3939527511af23dbfd97b5abde56215a5ce60d
343 + eip1559:
344 + git:
345 + url: https://github.com/xclud/dart_eip1559
346 + ref: d1888bf05e99cca1638e7fcc10d7f82d21857f9a
347 + eip55:
348 + git:
349 + url: https://github.com/xclud/dart_eip55
350 + ref: 1dd7172b6d8f7e21f11378a4bf3489a8d1ff890f
351 + encrypt:
352 + git:
353 + url: https://github.com/leocavalcante/encrypt
354 + ref: 8581b81c060cde1c531e35a6eaa4b7324e9ab813
355 + ens_dart:
356 + git:
357 + url: https://github.com/cake-tech/ens_dart.git
358 + ref: 9fa09b9db69b8645d5d50a844652aa570451d101
359 + equatable:
360 + git:
361 + url: https://github.com/felangel/equatable
362 + ref: f98a58960545ba72b51d0eacf746af393a0c6b24
363 + erc20:
364 + git:
365 + url: https://github.com/xclud/dart_erc20
366 + ref: 759c4363d1dc9d6a3c2604ceb4261b5bcdfc68b1
367 + eth_sig_util:
368 + git:
369 + url: https://github.com/wakumo/eth-sig-util
370 + ref: 6acd66a126f470b5541f089fdd1c079d35a59c9a
371 + event:
372 + git:
373 + url: https://github.com/aryehof/dart-event
374 + ref: 93e1c474cf736481a0ef07c15a8c8bbdc5f21b60
375 + fake_async:
376 + git:
377 + url: https://github.com/dart-lang/test
378 + ref: 82417ab30b95ff471ded4bf6a3eea005ca97774f
379 + path: ./pkgs/fake_async
380 + fast_base58:
381 + git:
382 + url: https://github.com/maoxs2/dart_fast_base58
383 + ref: 46955c19e499ce5c15755f6f573479d5f5218a45
384 + fast_scanner:
385 + git:
386 + url: https://github.com/MrCyjaneK/fast_scanner
387 + ref: 69b3276b090fa6ac01b4483ca3adca93a8e615be
388 + ffi:
389 + git:
390 + url: https://github.com/dart-lang/native
391 + ref: 6bd0935f29c7294ebb9aab21c06b47b513def933
392 + path: ./pkgs/ffi
393 + ffigen:
394 + git:
395 + url: https://github.com/dart-lang/native
396 + ref: c837526da8808501b53255caea0364eaa2c84afb
397 + path: ./pkgs/ffigen
398 + file:
399 + git:
400 + url: https://github.com/dart-lang/tools
401 + ref: 3f7a46606496f826c2f60586ab71c2b7a9bfbf15
402 + path: ./pkgs/file
403 + file_picker:
404 + git:
405 + url: https://github.com/cake-tech/flutter_file_picker.git
406 + ref: c414574bc5ac349450f601e7f72c7b9f31b4d087
407 + file_selector_linux:
408 + git:
409 + url: https://github.com/flutter/packages
410 + ref: e67b6be3f57927f6831ec41afd3444adb31be3d3
411 + path: ./packages/file_selector/file_selector_linux
412 + file_selector_macos:
413 + git:
414 + url: https://github.com/flutter/packages
415 + ref: e67b6be3f57927f6831ec41afd3444adb31be3d3
416 + path: ./packages/file_selector/file_selector_macos
417 + file_selector_platform_interface:
418 + git:
419 + url: https://github.com/flutter/packages
420 + ref: 29211e8b56107f477d4521dd30e8ad713007860e
421 + path: ./packages/file_selector/file_selector_platform_interface
422 + file_selector_windows:
423 + git:
424 + url: https://github.com/flutter/packages
425 + ref: 18b9cc5f2b0820cb6164f0150958ba76db75c61a
426 + path: ./packages/file_selector/file_selector_windows
427 + fixed:
428 + git:
429 + url: https://github.com/onepub-dev/fixed
430 + ref: 1bdd715b95d8ed9c7fdffa6735bdcf2bf5ff8e65
431 + fixnum:
432 + git:
433 + url: https://github.com/dart-lang/core
434 + ref: 17d1b2cd13991f3cf844886db1c7ad18910a8908
435 + path: ./pkgs/fixnum
436 + fixnum_nanodart:
437 + git:
438 + url: https://github.com/MrCyjaneK/fixnum_nanodart
439 + ref: 332e879371f175b52f688383d6ff795609aece85
440 + fl_chart:
441 + git:
442 + url: https://github.com/imaNNeo/fl_chart
443 + ref: be14b9722b7f18310c869c930562b7871b0165ed
444 + flat_buffers:
445 + git:
446 + url: https://github.com/google/flatbuffers
447 + ref: 187240970746d00bbd26b0f5873ed54d2477f9f3
448 + path: ./dart
449 + flex_color_scheme:
450 + git:
451 + url: https://github.com/rydmike/flex_color_scheme
452 + ref: c0e810b1eba7cd2b2be1f5c6130b86672858db3d
453 + flex_seed_scheme:
454 + git:
455 + url: https://github.com/rydmike/flex_seed_scheme
456 + ref: aa7be701ad58dc8e61637373db2bef0f28d2606e
457 + flutter_bloc:
458 + git:
459 + url: https://github.com/felangel/bloc
460 + ref: 59098d33f3eed63001d3170295d2bfa76fa84351
461 + path: ./packages/flutter_bloc
462 + flutter_daemon:
463 + git:
464 + url: https://github.com/MrCyjaneK/flutter_daemon
465 + ref: c24ee99f2f3070ea02d8108bbdd7727d73f7e5f1
466 + flutter_form_builder:
467 + git:
468 + url: https://github.com/flutter-form-builder-ecosystem/flutter_form_builder
469 + ref: c55646b1d7f995752dbf5a9bd63da7592d342ffb
470 + flutter_hooks:
471 + git:
472 + url: https://github.com/rrousselGit/flutter_hooks
473 + ref: 9a2245f922bbd0ec397562fc7dc4b22b98c9199e
474 + path: ./packages/flutter_hooks
475 + flutter_inappwebview:
476 + git:
477 + url: https://github.com/pichillilorenzo/flutter_inappwebview
478 + ref: f67ae1f34868c7660c16a2473f53a7a7bfb6f784
479 + path: ./flutter_inappwebview
480 + flutter_inappwebview_android:
481 + git:
482 + url: https://github.com/pichillilorenzo/flutter_inappwebview
483 + ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
484 + path: ./flutter_inappwebview_android
485 + flutter_inappwebview_internal_annotations:
486 + git:
487 + url: https://github.com/pichillilorenzo/flutter_inappwebview
488 + ref: 5be1ade739ab2a385e94a1bd5936c5a2000d52a9
489 + path: ./dev_packages/flutter_inappwebview_internal_annotations
490 + flutter_inappwebview_ios:
491 + git:
492 + url: https://github.com/pichillilorenzo/flutter_inappwebview
493 + ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
494 + path: ./flutter_inappwebview_ios
495 + flutter_inappwebview_macos:
496 + git:
497 + url: https://github.com/pichillilorenzo/flutter_inappwebview
498 + ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
499 + path: ./flutter_inappwebview_macos
500 + flutter_inappwebview_platform_interface:
501 + git:
502 + url: https://github.com/pichillilorenzo/flutter_inappwebview
503 + ref: 60f1012e804f785421878ba1ee34403458e6baf2
504 + path: ./flutter_inappwebview_platform_interface
505 + flutter_inappwebview_web:
506 + git:
507 + url: https://github.com/pichillilorenzo/flutter_inappwebview
508 + ref: a17ca9d0b8d8d98b53c6759768f1df4d0a058984
509 + path: ./flutter_inappwebview_web
510 + flutter_inappwebview_windows:
511 + git:
512 + url: https://github.com/pichillilorenzo/flutter_inappwebview
513 + ref: 952aa783912c9b0fd98d01e3c2c707d97512cd63
514 + path: ./flutter_inappwebview_windows
515 + flutter_local_authentication:
516 + git:
517 + url: https://github.com/cake-tech/flutter_local_authentication
518 + ref: 75c8681ebef62398a87c8ae0cccb7cfddffa9734
519 + flutter_local_notifications:
520 + git:
521 + url: https://github.com/MaikuB/flutter_local_notifications
522 + ref: 6c7378ddb1ed7f885e1e80caa3df3bcfb0fe8707
523 + path: ./flutter_local_notifications
524 + flutter_local_notifications_linux:
525 + git:
526 + url: https://github.com/MaikuB/flutter_local_notifications
527 + ref: 314b432f98bcaef768468e5755317e10213a59bf
528 + path: ./flutter_local_notifications_linux
529 + flutter_local_notifications_platform_interface:
530 + git:
531 + url: https://github.com/MaikuB/flutter_local_notifications
532 + ref: 816a1ddbf733bba3fb8d87ac3a9c2673ec15881b
533 + path: ./flutter_local_notifications_platform_interface
534 + flutter_local_notifications_windows:
535 + git:
536 + url: https://github.com/MaikuB/flutter_local_notifications
537 + ref: ecd66b1515d17e327a62ca4ff8e94f925e97d688
538 + path: ./flutter_local_notifications_windows
539 + flutter_mailer:
540 + git:
541 + url: https://github.com/taljacobson/flutter_mailer
542 + ref: 9c4ed111a9151a2bbfb9afe2c18a37599c6f84f3
543 + flutter_mobx:
544 + git:
545 + url: https://github.com/mobxjs/mobx.dart
546 + ref: 0cadcd03551baaae57788b7288e1245e6408d5cf
547 + path: ./flutter_mobx
548 + flutter_native_splash:
549 + git:
550 + url: https://github.com/jonbhanson/flutter_native_splash
551 + ref: 8c65117f0a4adc04f93deeb595a699a0d6dac559
552 + flutter_plugin_android_lifecycle:
553 + git:
554 + url: https://github.com/flutter/packages
555 + ref: 4afc383a6db56cb969af5d8ad02a1a0220758b66
556 + path: ./packages/flutter_plugin_android_lifecycle
557 + flutter_riverpod:
558 + git:
559 + url: https://github.com/rrousselGit/riverpod
560 + ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
561 + path: ./packages/flutter_riverpod
562 + flutter_rust_bridge:
563 + git:
564 + url: https://github.com/fzyzcjy/flutter_rust_bridge
565 + ref: f19087cd0cac019b82d52cfa5153ce81b1b6e902
566 + path: ./frb_dart
567 + flutter_secure_storage:
568 + git:
569 + url: https://github.com/cake-tech/flutter_secure_storage.git
570 + path: flutter_secure_storage
571 + ref: ca897a08677edb443b366352dd7412735e098e7b
572 + flutter_secure_storage_linux:
573 + git:
574 + url: https://github.com/mogol/flutter_secure_storage
575 + ref: 1355e56cd48404fdbb0848979de72ee317b0c6c9
576 + path: ./flutter_secure_storage_linux
577 + flutter_secure_storage_macos:
578 + git:
579 + url: https://github.com/cake-tech/flutter_secure_storage.git
580 + ref: ca897a08677edb443b366352dd7412735e098e7b
581 + path: ./flutter_secure_storage_macos
582 + flutter_secure_storage_platform_interface:
583 + git:
584 + url: https://github.com/mogol/flutter_secure_storage
585 + ref: 3d5466cc3b93196bc9d8287f67f85a45ab6ebd3e
586 + path: ./flutter_secure_storage_platform_interface
587 + flutter_secure_storage_web:
588 + git:
589 + url: https://github.com/mogol/flutter_secure_storage
590 + ref: 62cb9ec42b78fca2a1e64d729423367735134c11
591 + path: ./flutter_secure_storage_web
592 + flutter_secure_storage_windows:
593 + git:
594 + url: https://github.com/mogol/flutter_secure_storage
595 + ref: 908d3f3f5fb1ba90927ceebde8b253f413f833d7
596 + path: ./flutter_secure_storage_windows
597 + flutter_shaders:
598 + git:
599 + url: https://github.com/jonahwilliams/flutter_shaders
600 + ref: e331377d58755fe914a2ce54b0f70ba34898dfdd
601 + flutter_slidable:
602 + git:
603 + url: https://github.com/letsar/flutter_slidable
604 + ref: 7dbeb6667bf410d9a8401f0f8412e14669e7338f
605 + flutter_spinkit:
606 + git:
607 + url: https://github.com/jogboms/flutter_spinkit
608 + ref: bf8508db798f1e31dea152b9b762f223d90d3449
609 + flutter_svg:
610 + git:
611 + url: https://github.com/flutter/packages
612 + ref: ddc9430a0080bea73c5511732f396acde1f48fe0
613 + path: ./third_party/packages/flutter_svg
614 + flutter_web_bluetooth:
615 + git:
616 + url: https://github.com/jeroen1602/flutter_web_bluetooth
617 + ref: 82d12cda1b65efc1d96b53b27b8b5451e34c96ef
618 + fluttertoast:
619 + git:
620 + url: https://github.com/PonnamKarthik/FlutterToast
621 + ref: e875d071da02fe6f3090794d1ac623093c3b7074
622 + form_builder_validators:
623 + git:
624 + url: https://github.com/flutter-form-builder-ecosystem/form_builder_validators
625 + ref: 7a561b8aff3739d80c54c394f9b0cc9c861a01b8
626 + freezed_annotation:
627 + git:
628 + url: https://github.com/rrousselGit/freezed
629 + ref: 4f7c141c6d2573622b5ea29fe305a8f08db1483b
630 + path: ./packages/freezed_annotation
631 + frontend_server_client:
632 + git:
633 + url: https://github.com/dart-lang/webdev
634 + ref: 74e95837adf3d4ea64a003ccc4f8f09704c1d866
635 + path: ./frontend_server_client
636 + gap:
637 + git:
638 + url: https://github.com/letsar/gap
639 + ref: b385a5888b1582badf22bbd93283ec22de8a75d7
640 + get_it:
641 + git:
642 + url: https://github.com/fluttercommunity/get_it
643 + ref: 974c0b367c58fd75e78f0d036147a6963392f975
644 + glob:
645 + git:
646 + url: https://github.com/dart-lang/tools
647 + ref: 92114ab8a16eef77be1cd7bad3f5af28b5b1dc63
648 + path: ./pkgs/glob
649 + go_router:
650 + git:
651 + url: https://github.com/flutter/packages
652 + ref: 6d191c59e6f31c0133955c88bede437745659452
653 + path: ./packages/go_router
654 + google_identity_services_web:
655 + git:
656 + url: https://github.com/flutter/packages
657 + ref: 41211cf4c9a801f8d8ad527e54062d457a7cfbff
658 + path: ./packages/google_identity_services_web
659 + googleapis_auth:
660 + git:
661 + url: https://github.com/google/googleapis.dart
662 + ref: 1631558038c7e30511295512527d8ade2bd64c40
663 + path: ./googleapis_auth
664 + graphs:
665 + git:
666 + url: https://github.com/dart-lang/tools
667 + ref: 55dbd6e09042bc1b935c019d8e70b3f41e6b90ea
668 + path: ./pkgs/graphs
669 + grpc:
670 + git:
671 + url: https://github.com/grpc/grpc-dart
672 + ref: 4f6fe9b1114aa5bd9d97e5d3b5ae2cb354804a1f
673 + hashlib:
674 + git:
675 + url: https://github.com/bitanon/hashlib
676 + ref: 07848d0ebc5ff67dac0d2ecb638c3f4cd670d0cf
677 + hashlib_codecs:
678 + git:
679 + url: https://github.com/bitanon/hashlib_codecs
680 + ref: b15b231bbced2bb076890f8cfd384f024e9eba71
681 + hex:
682 + git:
683 + url: https://github.com/stevenroose/dart-hex
684 + ref: 262f0113430f7c5662f0578d86334fce0e008ea7
685 + hive:
686 + git:
687 + url: https://github.com/hivedb/hive
688 + ref: 470473ffc1ba39f6c90f31ababe0ee63b76b69fe
689 + path: ./hive
690 + hive_flutter:
691 + git:
692 + url: https://github.com/hivedb/hive
693 + ref: db56a26d5324a19373a35e365c50d808c6e1ce0c
694 + path: ./hive_flutter
695 + hooks:
696 + git:
697 + url: https://github.com/dart-lang/native
698 + ref: 5e2b3d1171cabe90bae969cd098c85182c1751b3
699 + path: ./pkgs/hooks
700 + hooks_riverpod:
701 + git:
702 + url: https://github.com/rrousselGit/riverpod
703 + ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
704 + path: ./packages/hooks_riverpod
705 + html:
706 + git:
707 + url: https://github.com/dart-lang/tools
708 + ref: 11f4cf7ee79632be370062dad67b7dd81bc28d55
709 + path: ./pkgs/html
710 + http:
711 + git:
712 + url: https://github.com/dart-lang/http
713 + ref: 907782f5a792e7a5b0ed92f118c0ad91f3ecde51
714 + path: ./pkgs/http
715 + http2:
716 + git:
717 + url: https://github.com/dart-lang/http
718 + ref: 5e2281edd25f9addbf26242a0658d8f2dfa1134b
719 + path: ./pkgs/http2
720 + http_multi_server:
721 + git:
722 + url: https://github.com/dart-lang/http
723 + ref: c27d6c780bae0207e938f09596c2cf8d9bb4a963
724 + path: ./pkgs/http_multi_server
725 + http_parser:
726 + git:
727 + url: https://github.com/dart-lang/http
728 + ref: 6ecd13a88b82c2fdc8a555f218bafb0ad0370f51
729 + path: ./pkgs/http_parser
730 + image:
731 + git:
732 + url: https://github.com/brendan-duncan/image
733 + ref: a5cc03b65592616bb423254cdea8ce4b093b4a04
734 + image_picker:
735 + git:
736 + url: https://github.com/flutter/packages
737 + ref: 2900bc94e9912486e3454223df2683a372f4e137
738 + path: ./packages/image_picker/image_picker
739 + image_picker_android:
740 + git:
741 + url: https://github.com/flutter/packages
742 + ref: 5f14a8010690b33f8f71d888dd6a3de665164e21
743 + path: ./packages/image_picker/image_picker_android
744 + image_picker_for_web:
745 + git:
746 + url: https://github.com/flutter/packages
747 + ref: 34746bb64150c7bbf319a9eee4164b4a5d733b2e
748 + path: ./packages/image_picker/image_picker_for_web
749 + image_picker_ios:
750 + git:
751 + url: https://github.com/flutter/packages
752 + ref: 44a58ab4aab0b78fab2b51e0d093561be0b4964c
753 + path: ./packages/image_picker/image_picker_ios
754 + image_picker_linux:
755 + git:
756 + url: https://github.com/flutter/packages
757 + ref: b26262b5034d59c9575b708a031ecfdfe12e5118
758 + path: ./packages/image_picker/image_picker_linux
759 + image_picker_macos:
760 + git:
761 + url: https://github.com/flutter/packages
762 + ref: 7ebd635db5c71197877a48cc31a7edba9a3f067b
763 + path: ./packages/image_picker/image_picker_macos
764 + image_picker_platform_interface:
765 + git:
766 + url: https://github.com/flutter/packages
767 + ref: 501d8c9bd36577f1af17d799cb69fefd6c4b2f4b
768 + path: ./packages/image_picker/image_picker_platform_interface
769 + image_picker_windows:
770 + git:
771 + url: https://github.com/flutter/packages
772 + ref: b26262b5034d59c9575b708a031ecfdfe12e5118
773 + path: ./packages/image_picker/image_picker_windows
774 + in_app_review:
775 + git:
776 + url: https://github.com/britannio/in_app_review
777 + ref: a08b2fcb98c74f2fa12b5f3c61b588b763430368
778 + path: ./in_app_review
779 + in_app_review_platform_interface:
780 + git:
781 + url: https://github.com/britannio/in_app_review
782 + ref: 54fcef429fc6f9ed50660d23741ef7e38a684a1f
783 + path: ./in_app_review_platform_interface
784 + intl:
785 + git:
786 + url: https://github.com/dart-lang/i18n
787 + ref: a1dd8e1ff32e5b53bdf38511cd5d7524694af95a
788 + path: ./pkgs/intl
789 + io:
790 + git:
791 + url: https://github.com/dart-lang/tools
792 + ref: faf2b86b71e633e956ff1489eb60885b21fa100d
793 + path: ./pkgs/io
794 + jni:
795 + git:
796 + url: https://github.com/dart-lang/native
797 + ref: 3b0c7beded15ef47a3dba4b5c0093cbe195e7aba
798 + path: ./pkgs/jni
799 + jni_flutter:
800 + git:
801 + url: https://github.com/dart-lang/native
802 + ref: 6e3efdc1afa0462b1aff38c087cb50f0e6925cda
803 + path: ./pkgs/jni_flutter
804 + jni_util:
805 + git:
806 + url: https://github.com/dart-lang/native
807 + ref: 7990d3a3806fa6c161e2340a95574d3a92d9bca2
808 + path: ./pkgs/jni_util
809 + js:
810 + git:
811 + url: https://github.com/dart-lang/sdk
812 + ref: c70f78e7d682c158c15ca0c26c729b3ccb932284
813 + path: ./pkg/js
814 + json_annotation:
815 + git:
816 + url: https://github.com/google/json_serializable.dart
817 + ref: 61e7b879b22af58f2f942ccf6c0ae81acd0cb1bc
818 + path: ./json_annotation
819 + json_bigint:
820 + git:
821 + url: https://github.com/ozaner/json_bigint
822 + ref: 5528e714cb048860a3fd700fd3f2e406828e9cd8
823 + json_rpc_2:
824 + git:
825 + url: https://github.com/dart-lang/tools
826 + ref: 88087ae253cab7ff9eccadb3c8cbf550ee071226
827 + path: ./pkgs/json_rpc_2
828 + kepler:
829 + git:
830 + url: https://github.com/tjcampanella/kepler
831 + ref: e2c671389c18a5149147f598627c946c311e36b8
832 + keyboard_actions:
833 + git:
834 + url: https://github.com/diegoveloper/flutter_keyboard_actions
835 + ref: e197412c52cd75d8a7c7ac74558610c0f92635e4
836 + leak_tracker:
837 + git:
838 + url: https://github.com/dart-lang/leak_tracker
839 + ref: 64bae50ca89528f73d6a440c22b7e3e1713bb7f0
840 + path: ./pkgs/leak_tracker
841 + leak_tracker_flutter_testing:
842 + git:
843 + url: https://github.com/dart-lang/leak_tracker
844 + ref: 84d523d8ea34ecf889a3f383e206bc231af31686
845 + path: ./pkgs/leak_tracker_flutter_testing
846 + leak_tracker_testing:
847 + git:
848 + url: https://github.com/dart-lang/leak_tracker
849 + ref: 84d523d8ea34ecf889a3f383e206bc231af31686
850 + path: ./pkgs/leak_tracker_testing
851 + ledger_bitcoin:
852 + git:
853 + url: https://github.com/cake-tech/ledger-flutter-plus-plugins
854 + ref: 75bba8632c529debf30ee2b1858530009fa6440b
855 + path: ./packages/ledger-bitcoin
856 + ledger_ethereum:
857 + git:
858 + url: https://github.com/cake-tech/ledger-flutter-plus-plugins
859 + ref: f4761cd5171d4c1e2e42fd3298261650539fb2db
860 + path: ./packages/ledger-ethereum
861 + ledger_flutter_plus:
862 + git:
863 + url: https://github.com/cake-tech/ledger-flutter-plus
864 + ref: eaf49764ad0863e8dec97ad30ff6aea0a1d1bd28
865 + ledger_litecoin:
866 + git:
867 + url: https://github.com/cake-tech/ledger-flutter-plus-plugins
868 + ref: 75bba8632c529debf30ee2b1858530009fa6440b
869 + path: ./packages/ledger-litecoin
870 + ledger_usb_plus:
871 + git:
872 + url: https://github.com/cake-tech/ledger-usb-plus
873 + ref: 40af7c48cf34211ba3cc9e87dd05ed1af8a429a2
874 + libcrypto:
875 + git:
876 + url: https://github.com/MrCyjaneK/libcrypto
877 + ref: 98be84e0a2c7b423842d1fbbd2d920ff03180235
878 + local_auth:
879 + git:
880 + url: https://github.com/flutter/packages
881 + ref: db8bfed397145b7c5a1ade3c374a74053649ce12
882 + path: ./packages/local_auth/local_auth
883 + local_auth_android:
884 + git:
885 + url: https://github.com/flutter/packages
886 + ref: 1c0be204c45eea42927eb6005bb45f16a8fffb07
887 + path: ./packages/local_auth/local_auth_android
888 + local_auth_darwin:
889 + git:
890 + url: https://github.com/flutter/packages
891 + ref: d3e0285a6bf353f4bed9ba01d2b37a68fa63d741
892 + path: ./packages/local_auth/local_auth_darwin
893 + local_auth_platform_interface:
894 + git:
895 + url: https://github.com/flutter/packages
896 + ref: 321a5846838d2bfa5f3dd463e3833b951da0db32
897 + path: ./packages/local_auth/local_auth_platform_interface
898 + local_auth_windows:
899 + git:
900 + url: https://github.com/flutter/packages
901 + ref: e978e06eb9207e4bd7a56b2139b2906d3150edb5
902 + path: ./packages/local_auth/local_auth_windows
903 + logger:
904 + git:
905 + url: https://github.com/SourceHorizon/logger
906 + ref: 4c56353a5060f403650f0c728a6438d3db2de669
907 + logging:
908 + git:
909 + url: https://github.com/dart-lang/core
910 + ref: 8151b9f57fa3fee10421a19ce24470e143c0dee5
911 + path: ./pkgs/logging
912 + lottie:
913 + git:
914 + url: https://github.com/xvrh/lottie-flutter
915 + ref: 1eef993a7a69cd05cfcc4c9eac4f2d89ecfab2d1
916 + matcher:
917 + git:
918 + url: https://github.com/dart-lang/test
919 + ref: 45e4ef287d70dad449f13d4f284f9faea2d9188b
920 + path: ./pkgs/matcher
921 + material_color_utilities:
922 + git:
923 + url: https://github.com/material-foundation/material-color-utilities
924 + ref: 5d4397afe1830b09ff99c1cb3cf901038951282a
925 + path: ./dart
926 + memoize:
927 + git:
928 + url: https://github.com/wrike/memoize_dart
929 + ref: f541e50b3be0e7b9e83bbd3858d3a25356140570
930 + mime:
931 + git:
932 + url: https://github.com/dart-lang/tools
933 + ref: 3440b74e430051304b56d4acd71b7ed30ab1855d
934 + path: ./pkgs/mime
935 + mobx:
936 + git:
937 + url: https://github.com/mobxjs/mobx.dart
938 + ref: d677b8d361301b60577267703371013749b7b7de
939 + path: ./mobx
940 + mobx_codegen:
941 + git:
942 + url: https://github.com/mobxjs/mobx.dart
943 + ref: 39a1f18c2e76a564b5e5358426d335569bc332ec
944 + path: ./mobx_codegen
945 + mockito:
946 + git:
947 + url: https://github.com/dart-lang/build
948 + ref: f550d53994b429f48f2b86f9c70956bf50d4e0c2
949 + path: ./builder_pkgs/mockito
950 + mocktail:
951 + git:
952 + url: https://github.com/felangel/mocktail
953 + ref: 12989138eb6beb3d1cad330ebfd88fef005a4e3e
954 + path: ./packages/mocktail
955 + modal_bottom_sheet:
956 + git:
957 + url: https://github.com/cake-tech/modal_bottom_sheet
958 + ref: b1cca111c53d41b9f07123a8c67cfe06fb1b69bf
959 + path: ./modal_bottom_sheet
960 + monero:
961 + git:
962 + url: https://github.com/mrcyjanek/monero_c.git
963 + ref: 3bfb3856a838f2bf6b729501837bb0295dedf25d
964 + path: ./impls/monero.dart
965 + msgpack_dart:
966 + git:
967 + url: https://github.com/knopp/msgpack_dart
968 + ref: 2527c0a1e2eabf92a7f5db50983d3ee4ec71ccaa
969 + msix:
970 + git:
971 + url: https://github.com/YehudaKremer/msix
972 + ref: 1ab4df346a92ef4dc7bf02fd857d2975be04d47c
973 + mutex:
974 + git:
975 + url: https://github.com/hoylen/dart-mutex
976 + ref: 84ca903a3ac863735e3228c75a212133621f680f
977 + nanodart:
978 + git:
979 + url: https://github.com/appditto/nanodart
980 + ref: 5c1b352fc02d94a34129f3848bedcec441c2b8c7
981 + nanoutil:
982 + git:
983 + url: https://github.com/perishllc/nanoutil.git
984 + ref: c01a9c552917008d8fbc6b540db657031625b04f
985 + native_toolchain_c:
986 + git:
987 + url: https://github.com/dart-lang/native
988 + ref: 7dbb51d78534b3c037f3f063448cc45e5ca80a58
989 + path: ./pkgs/native_toolchain_c
990 + nested:
991 + git:
992 + url: https://github.com/rrousselGit/nested
993 + ref: 23dbf54af127301839927831695800edd5cc3dc0
994 + nm:
995 + git:
996 + url: https://github.com/canonical/nm.dart
997 + ref: 6568c7666071f56177e45333c80dc1978ae14483
998 + node_preamble:
999 + git:
1000 + url: https://github.com/mbullington/node_preamble.dart
1001 + ref: ddd4f12ddddf94ad53ec17a742008c23ad666cef
1002 + nostr_tools:
1003 + git:
1004 + url: https://github.com/cake-tech/nostr_tools.git
1005 + ref: 089d5a2dd751429a040ba10fb24fcbae564053e5
1006 + objective_c:
1007 + git:
1008 + url: https://github.com/dart-lang/native
1009 + ref: 7990d3a3806fa6c161e2340a95574d3a92d9bca2
1010 + path: ./pkgs/objective_c
1011 + on_chain:
1012 + git:
1013 + url: https://github.com/cake-tech/on_chain.git
1014 + ref: 096865a8c6b89c260beadfec04f7e184c40a3273
1015 + package_config:
1016 + git:
1017 + url: https://github.com/dart-lang/tools
1018 + ref: 9c533582195b12ea006dc7188767b5a288b4c5c8
1019 + path: ./pkgs/package_config
1020 + package_info_plus:
1021 + git:
1022 + url: https://github.com/fluttercommunity/plus_plugins
1023 + ref: 9f03424b7916b195ec6a4bebe4cc1a310ba40d4a
1024 + path: ./packages/package_info_plus/package_info_plus
1025 + package_info_plus_platform_interface:
1026 + git:
1027 + url: https://github.com/fluttercommunity/plus_plugins
1028 + ref: 9f03424b7916b195ec6a4bebe4cc1a310ba40d4a
1029 + path: ./packages/package_info_plus/package_info_plus_platform_interface
1030 + path:
1031 + git:
1032 + url: https://github.com/dart-lang/core
1033 + ref: 010a343e71238b3ed7fcd55dad5869ecaa40991a
1034 + path: ./pkgs/path
1035 + path_drawing:
1036 + git:
1037 + url: https://github.com/dnfield/flutter_path_drawing
1038 + ref: 27ce967273429ce505962d4cf68c17a5b16b5aef
1039 + path_parsing:
1040 + git:
1041 + url: https://github.com/flutter/packages
1042 + ref: 3c3181c2cfcd0557e12a95ace0e347141f63e384
1043 + path: ./third_party/packages/path_parsing
1044 + path_provider:
1045 + git:
1046 + url: https://github.com/flutter/packages
1047 + ref: aa964a3ed6d97e4e9778feed85fa9ef1255a0477
1048 + path: ./packages/path_provider/path_provider
1049 + path_provider_android:
1050 + git:
1051 + url: https://github.com/flutter/packages
1052 + ref: f52df418da6ef2ba666112b4b9e87d9a1c43a0d0
1053 + path: ./packages/path_provider/path_provider_android
1054 + path_provider_foundation:
1055 + git:
1056 + url: https://github.com/flutter/packages
1057 + ref: 2ada7838737b6ea374c3ef1fffba95bd097eed92
1058 + path: ./packages/path_provider/path_provider_foundation
1059 + path_provider_linux:
1060 + git:
1061 + url: https://github.com/flutter/packages
1062 + ref: af136ccab198bc7dfa25f5fa5ace23fdbcdaadc7
1063 + path: ./packages/path_provider/path_provider_linux
1064 + path_provider_platform_interface:
1065 + git:
1066 + url: https://github.com/flutter/packages
1067 + ref: aa964a3ed6d97e4e9778feed85fa9ef1255a0477
1068 + path: ./packages/path_provider/path_provider_platform_interface
1069 + path_provider_windows:
1070 + git:
1071 + url: https://github.com/flutter/packages
1072 + ref: 47a92dbdea9bc433779c76b404af9c5ab6fa40cc
1073 + path: ./packages/path_provider/path_provider_windows
1074 + pausable_timer:
1075 + git:
1076 + url: https://github.com/llucax/pausable_timer
1077 + ref: 41e21b6444749a5d8cdb720128c9be66168b83cf
1078 + payjoin_flutter:
1079 + git:
1080 + url: https://github.com/konstantinullrich/payjoin-flutter
1081 + ref: b28c825b1d63381e8c2b25ef2ccabacbf833ce53
1082 + pedantic:
1083 + git:
1084 + url: https://github.com/google/pedantic
1085 + ref: bdcb962e3d2bda31a0e6dadb58b670aa633046e9
1086 + permission_handler:
1087 + git:
1088 + url: https://github.com/baseflow/flutter-permission-handler
1089 + ref: 441c53c4e02ac9b6417f758495a4b04618c6e600
1090 + path: ./permission_handler
1091 + permission_handler_android:
1092 + git:
1093 + url: https://github.com/baseflow/flutter-permission-handler
1094 + ref: 1dd6dc265a8f7b8b8dd0dd04f7202b8c17e4aa59
1095 + path: ./permission_handler_android
1096 + permission_handler_apple:
1097 + git:
1098 + url: https://github.com/baseflow/flutter-permission-handler
1099 + ref: 5c989b1be9abbbb325424ad96e5be4efdc0987c2
1100 + path: ./permission_handler_apple
1101 + permission_handler_html:
1102 + git:
1103 + url: https://github.com/baseflow/flutter-permission-handler
1104 + ref: f93a58bb2b993b831f48cf1ec0b3537905643e7e
1105 + path: ./permission_handler_html
1106 + permission_handler_platform_interface:
1107 + git:
1108 + url: https://github.com/baseflow/flutter-permission-handler
1109 + ref: b0bdda5faabb912dc6d0b3f330f9d801727db76e
1110 + path: ./permission_handler_platform_interface
1111 + permission_handler_windows:
1112 + git:
1113 + url: https://github.com/baseflow/flutter-permission-handler
1114 + ref: 41c2485eb698d055dcf59a373c07dee537b8aa01
1115 + path: ./permission_handler_windows
1116 + petitparser:
1117 + git:
1118 + url: https://github.com/petitparser/dart-petitparser
1119 + ref: 3d3c2155df8c427027660f8ca37ddc6e7b894748
1120 + pinenacl:
1121 + git:
1122 + url: https://github.com/ilap/pinenacl-dart
1123 + ref: 30c38f30a34137aa748217cf2d6fc978740d8da8
1124 + platform:
1125 + git:
1126 + url: https://github.com/dart-lang/core
1127 + ref: 07aff972869412010a73bbe33af0909bc0536e78
1128 + path: ./pkgs/platform
1129 + plugin_platform_interface:
1130 + git:
1131 + url: https://github.com/flutter/packages
1132 + ref: bb97da8ec627466fdb45cdd36e2c0e35dee40e9e
1133 + path: ./packages/plugin_platform_interface
1134 + pointycastle:
1135 + git:
1136 + url: https://github.com/bcgit/pc-dart
1137 + ref: c7009dbf7785f4ff865ddb4eefdaed8c18ef3baa
1138 + polyseed:
1139 + git:
1140 + url: https://github.com/cake-tech/polyseed_dart
1141 + ref: 1a8280ac2b6f01d202d8bff71527fe1ce498c4ed
1142 + pool:
1143 + git:
1144 + url: https://github.com/dart-lang/tools
1145 + ref: 042b03e8284032088f851172ab7b2aed06da1d72
1146 + path: ./pkgs/pool
1147 + posix:
1148 + git:
1149 + url: https://github.com/onepub-dev/dart_posix
1150 + ref: 3c544340f3e4ffc64b20e6959ae8229c98638a0a
1151 + process:
1152 + git:
1153 + url: https://github.com/dart-lang/tools
1154 + ref: 5e977d6f0698a220279a50538c89a440d56b0c44
1155 + path: ./pkgs/process
1156 + progressive_blur:
1157 + git:
1158 + url: https://github.com/kekland/progressive_blur
1159 + ref: 6ec8d0ccf46b1629a46ab68f31e26df489bac958
1160 + protobuf:
1161 + git:
1162 + url: https://github.com/google/protobuf.dart
1163 + ref: a852ba4e4b6f319c655fc938864dac8442b7c4ad
1164 + path: ./protobuf
1165 + provider:
1166 + git:
1167 + url: https://github.com/rrousselGit/provider
1168 + ref: 558bdcd26ddb2b922bec06e3fa0d91bc59479baf
1169 + path: ./packages/provider
1170 + pub_semver:
1171 + git:
1172 + url: https://github.com/dart-lang/tools
1173 + ref: d67cd0022095a138c66df94f100e5a129c15a65e
1174 + path: ./pkgs/pub_semver
1175 + pubspec_parse:
1176 + git:
1177 + url: https://github.com/dart-lang/tools
1178 + ref: 070355ee7014c4d37bdc50fa2b4a597f2774f9ca
1179 + path: ./pkgs/pubspec_parse
1180 + qr:
1181 + git:
1182 + url: https://github.com/kevmoo/qr.dart
1183 + ref: 792288784e200301b323b1e36852ae60a3ac2431
1184 + qr_flutter:
1185 + git:
1186 + url: https://github.com/cake-tech/qr.flutter.git
1187 + ref: dced28909a82e1906e7c510ae8ca807a1658c898
1188 + quick_actions:
1189 + git:
1190 + url: https://github.com/flutter/packages
1191 + ref: 8238e1c5ada8c6a99f7fb6087484b52face33721
1192 + path: ./packages/quick_actions/quick_actions
1193 + quick_actions_android:
1194 + git:
1195 + url: https://github.com/flutter/packages
1196 + ref: c05ab81dddf0f145c57b43df80903ce17ba84baf
1197 + path: ./packages/quick_actions/quick_actions_android
1198 + quick_actions_ios:
1199 + git:
1200 + url: https://github.com/flutter/packages
1201 + ref: 7ae082a7f6cd1bc6a219c6ab0adf27a3d8ffdc23
1202 + path: ./packages/quick_actions/quick_actions_ios
1203 + quick_actions_platform_interface:
1204 + git:
1205 + url: https://github.com/flutter/packages
1206 + ref: 761812665448c7e5a1bd5810aeabfac1ac027038
1207 + path: ./packages/quick_actions/quick_actions_platform_interface
1208 + quiver:
1209 + git:
1210 + url: https://github.com/google/quiver-dart
1211 + ref: 6ec3568dee63ae02e8676e28a6df0157f4d20e84
1212 + rational:
1213 + git:
1214 + url: https://github.com/a14n/dart-rational
1215 + ref: 09b5adc5be7a27c349a36b73d0d616b133ad8730
1216 + record_use:
1217 + git:
1218 + url: https://github.com/dart-lang/native
1219 + ref: abe17706806e8aa3cdafcbdab02cbbb5d1d2f884
1220 + path: ./pkgs/record_use
1221 + rive:
1222 + git:
1223 + url: https://github.com/MrCyjaneK/rive-flutter-no-lfs
1224 + ref: 2dbfe918a3d38340f378ab2734b1c97ebcb4ab26
1225 + rive_common:
1226 + git:
1227 + url: https://github.com/MrCyjaneK/rive_common
1228 + ref: 9457422fce3f1524437f6a1429200f048931a2fe
1229 + riverpod:
1230 + git:
1231 + url: https://github.com/rrousselGit/riverpod
1232 + ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
1233 + path: ./packages/riverpod
1234 + riverpod_annotation:
1235 + git:
1236 + url: https://github.com/rrousselGit/riverpod
1237 + ref: eb3651b42e368fc9a227aeffc9736fdc9a82f1b7
1238 + path: ./packages/riverpod_annotation
1239 + rlz:
1240 + git:
1241 + url: https://github.com/cake-tech/zkool2.git
1242 + ref: 36e72b530c274c4a54a6127aadb94886e84d67bf
1243 + path: ./rust_builder
1244 + rxdart:
1245 + git:
1246 + url: https://github.com/ReactiveX/rxdart
1247 + ref: 6852efa646198d8a75fcaee52a5227682f8016e7
1248 + path: ./packages/rxdart
1249 + searchable_listview:
1250 + git:
1251 + url: https://github.com/koukibadr/Searchable-Listview
1252 + ref: 87c203ac2737c3103929e2a2cd0f23becc4c3334
1253 + sec:
1254 + git:
1255 + url: https://github.com/xclud/dart_sec
1256 + ref: 1a53c7983d0e8b5e3842eff85cebc27fd474d8f0
1257 + sensitive_clipboard:
1258 + git:
1259 + url: https://github.com/cake-tech/sensitive_clipboard
1260 + ref: 288c7ee2d63b459bc735f7dc89321b29a1f12fae
1261 + sha3:
1262 + git:
1263 + url: https://github.com/maoxs2/dart_sha3
1264 + ref: 6d879eb52dec2b5e110d11957f5512ceb0eaa664
1265 + share_plus:
1266 + git:
1267 + url: https://github.com/fluttercommunity/plus_plugins
1268 + ref: 8e5fab7bfb1685f5a56f53020a49b2ff5bece25d
1269 + path: ./packages/share_plus/share_plus
1270 + share_plus_platform_interface:
1271 + git:
1272 + url: https://github.com/fluttercommunity/plus_plugins
1273 + ref: b5d24a0e3927314e50be041c9f5b7da487d69313
1274 + path: ./packages/share_plus/share_plus_platform_interface
1275 + shared_preferences:
1276 + git:
1277 + url: https://github.com/flutter/packages
1278 + ref: 064b0b26568728342a550dc876b0a0e0f2fbaa84
1279 + path: ./packages/shared_preferences/shared_preferences
1280 + shared_preferences_android:
1281 + git:
1282 + url: https://github.com/flutter/packages
1283 + ref: 371106fe7d9864a157fc9366f57d0b0e64fab932
1284 + path: ./packages/shared_preferences/shared_preferences_android
1285 + shared_preferences_foundation:
1286 + git:
1287 + url: https://github.com/flutter/packages
1288 + ref: 18b9cc5f2b0820cb6164f0150958ba76db75c61a
1289 + path: ./packages/shared_preferences/shared_preferences_foundation
1290 + shared_preferences_linux:
1291 + git:
1292 + url: https://github.com/flutter/packages
1293 + ref: cdd6e1368ffdf6a4fc9c0c11b72cfc5388f90f2d
1294 + path: ./packages/shared_preferences/shared_preferences_linux
1295 + shared_preferences_platform_interface:
1296 + git:
1297 + url: https://github.com/flutter/packages
1298 + ref: 371106fe7d9864a157fc9366f57d0b0e64fab932
1299 + path: ./packages/shared_preferences/shared_preferences_platform_interface
1300 + shared_preferences_web:
1301 + git:
1302 + url: https://github.com/flutter/packages
1303 + ref: cb4fb13e19756cbbcb523bc33fbf7b7a5923e787
1304 + path: ./packages/shared_preferences/shared_preferences_web
1305 + shared_preferences_windows:
1306 + git:
1307 + url: https://github.com/flutter/packages
1308 + ref: cdd6e1368ffdf6a4fc9c0c11b72cfc5388f90f2d
1309 + path: ./packages/shared_preferences/shared_preferences_windows
1310 + shelf:
1311 + git:
1312 + url: https://github.com/dart-lang/shelf
1313 + ref: 2536c15a562cb183dabbc628824a215663830325
1314 + path: ./pkgs/shelf
1315 + shelf_packages_handler:
1316 + git:
1317 + url: https://github.com/dart-lang/shelf
1318 + ref: 25861e55406c1f66cce066b6ed575f420b480e45
1319 + path: ./pkgs/shelf_packages_handler
1320 + shelf_static:
1321 + git:
1322 + url: https://github.com/dart-lang/shelf
1323 + ref: d53a8f9a98ccbe69078d397d45c2c6b3e7c243b6
1324 + path: ./pkgs/shelf_static
1325 + shelf_web_socket:
1326 + git:
1327 + url: https://github.com/dart-lang/shelf
1328 + ref: 2a7442f7d6d3e63fdc7b387128619b263dcb7e78
1329 + path: ./pkgs/shelf_web_socket
1330 + smooth_page_indicator:
1331 + git:
1332 + url: https://github.com/Milad-Akarie/smooth_page_indicator
1333 + ref: 519df3304d58c9d77e91725318076bc3aaa6e852
1334 + socks5_proxy:
1335 + git:
1336 + url: https://github.com/LacticWhale/socks_dart.git
1337 + ref: 27ad7c2efae8d7460325c74b90f660085cbd0685
1338 + socks_socket:
1339 + git:
1340 + url: https://github.com/sneurlax/socks_socket
1341 + ref: e6232c53c1595469931ababa878759a067c02e94
1342 + solana:
1343 + git:
1344 + url: https://github.com/espresso-cash/espresso-cash-public
1345 + ref: ab60e9d4c7d7271037597154ad2a835812054ed6
1346 + path: ./packages/solana
1347 + source_gen:
1348 + git:
1349 + url: https://github.com/dart-lang/source_gen
1350 + ref: 98cbdb6b17cdccabb0fec6e37fd66e2790d05092
1351 + path: ./source_gen
1352 + source_map_stack_trace:
1353 + git:
1354 + url: https://github.com/dart-lang/tools
1355 + ref: 56db6f3d085fa4e70b0286b30989654a5db90c94
1356 + path: ./pkgs/source_map_stack_trace
1357 + source_maps:
1358 + git:
1359 + url: https://github.com/dart-lang/tools
1360 + ref: db47a844e03cbd076ac7e5a0f4f46cadcba28da8
1361 + path: ./pkgs/source_maps
1362 + source_span:
1363 + git:
1364 + url: https://github.com/dart-lang/tools
1365 + ref: e501121027c0a9014161ff79cbf519c1813e3153
1366 + path: ./pkgs/source_span
1367 + sp_scanner:
1368 + git:
1369 + url: https://github.com/cake-tech/sp_scanner
1370 + ref: 40ed3ce8319744907bef3b25bc6e0af8428c8724
1371 + sqflite:
1372 + git:
1373 + url: https://github.com/tekartik/sqflite
1374 + ref: 094cc31b82df7f9ba04f330f13b50e345f777079
1375 + path: ./sqflite
1376 + sqflite_android:
1377 + git:
1378 + url: https://github.com/tekartik/sqflite
1379 + ref: 7e7159b59572e04024258417072428d1cffca1cc
1380 + path: ./sqflite_android
1381 + sqflite_common:
1382 + git:
1383 + url: https://github.com/tekartik/sqflite
1384 + ref: 018def1518b3ce9efcb25bbf57809153e9252da7
1385 + path: ./sqflite_common
1386 + sqflite_common_ffi:
1387 + git:
1388 + url: https://github.com/tekartik/sqflite
1389 + ref: 7482da6f456feb715eecdff8a6287bb30d01481f
1390 + path: ./sqflite_common_ffi
1391 + sqflite_darwin:
1392 + git:
1393 + url: https://github.com/tekartik/sqflite
1394 + ref: e2d87c863f33e8981dfb589d4784ab14d8f5cc77
1395 + path: ./sqflite_darwin
1396 + sqflite_platform_interface:
1397 + git:
1398 + url: https://github.com/tekartik/sqflite
1399 + ref: 03e86a1aa7f8ebea7c40d2b02248cadc7630c2f0
1400 + path: ./sqflite_platform_interface
1401 + sqlite3:
1402 + git:
1403 + url: https://github.com/simolus3/sqlite3.dart
1404 + ref: ac40b296e7069c4e83503bcbe4a3b22dfe5431a7
1405 + path: ./sqlite3
1406 + sqlite3_flutter_libs:
1407 + git:
1408 + url: https://github.com/simolus3/sqlite3.dart
1409 + ref: 808a60becaa3f9fae41e0590b853c3283b5f6afb
1410 + path: ./sqlite3_flutter_libs
1411 + stack_trace:
1412 + git:
1413 + url: https://github.com/dart-lang/tools
1414 + ref: 07648c8269244506d83c15dc8cc50aa53d24bf35
1415 + path: ./pkgs/stack_trace
1416 + state_notifier:
1417 + git:
1418 + url: https://github.com/rrousselGit/state_notifier
1419 + ref: 061abfc682881d5da4716b211cd4e7d41805a9ac
1420 + path: ./packages/state_notifier
1421 + stream_channel:
1422 + git:
1423 + url: https://github.com/dart-lang/tools
1424 + ref: 5265a85f307ce7be94553378589205df97736a1b
1425 + path: ./pkgs/stream_channel
1426 + stream_transform:
1427 + git:
1428 + url: https://github.com/dart-lang/tools
1429 + ref: 46cc745458f93bdbd39972a925d7530e57f84f5c
1430 + path: ./pkgs/stream_transform
1431 + string_scanner:
1432 + git:
1433 + url: https://github.com/dart-lang/tools
1434 + ref: 3815ff3fd2aee5212586c3fc4d2bcf08584c98f3
1435 + path: ./pkgs/string_scanner
1436 + sync_http:
1437 + git:
1438 + url: https://github.com/google/sync_http.dart
1439 + ref: 39509d69fd5a9c3da46eab48fcafdf62e6ad4580
1440 + synchronized:
1441 + git:
1442 + url: https://github.com/tekartik/synchronized.dart
1443 + ref: b38010355b23e3baed85e263ca7f9e222d57b00a
1444 + path: ./synchronized
1445 + term_glyph:
1446 + git:
1447 + url: https://github.com/dart-lang/tools
1448 + ref: c90e95b1f2a130b2e951466719b28c3d13b8dab5
1449 + path: ./pkgs/term_glyph
1450 + test:
1451 + git:
1452 + url: https://github.com/dart-lang/test
1453 + ref: 45e4ef287d70dad449f13d4f284f9faea2d9188b
1454 + path: ./pkgs/test
1455 + test_api:
1456 + git:
1457 + url: https://github.com/dart-lang/test
1458 + ref: 45e4ef287d70dad449f13d4f284f9faea2d9188b
1459 + path: ./pkgs/test_api
1460 + test_core:
1461 + git:
1462 + url: https://github.com/dart-lang/test
1463 + ref: 45e4ef287d70dad449f13d4f284f9faea2d9188b
1464 + path: ./pkgs/test_core
1465 + timezone:
1466 + git:
1467 + url: https://github.com/srawlins/timezone
1468 + ref: 64db18e450c10247e23ee36546865007b01cf135
1469 + toastification:
1470 + git:
1471 + url: https://github.com/payam-zahedi/toastification
1472 + ref: 4f1068f5265a0d189aee6881d125e8a35adec74f
1473 + translator:
1474 + git:
1475 + url: https://github.com/cake-tech/google-translator.git
1476 + ref: b36571ec11efd838afda010adcc21a4e95302745
1477 + trezor_connect:
1478 + git:
1479 + url: https://github.com/cake-tech/trezor_connect
1480 + ref: d1242cea90f84b00200e7bcab914a5af750e23fb
1481 + trezor_flutter:
1482 + git:
1483 + url: https://github.com/cake-tech/trezor-flutter.git
1484 + ref: 7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97
1485 + path: ./trezor-flutter
1486 + trezor_usb_transport:
1487 + git:
1488 + url: https://github.com/cake-tech/trezor-flutter.git
1489 + ref: 7d27e19b7bcdcd6241df35953f9a6ec2df0c7a97
1490 + path: ./trezor_usb_transport
1491 + tuple:
1492 + git:
1493 + url: https://github.com/google/tuple.dart
1494 + ref: 91bcce6e0672c4b071d270aafde5cd86103668dd
1495 + typed_data:
1496 + git:
1497 + url: https://github.com/dart-lang/core
1498 + ref: 5ed932323581a4791672c25fe154c622b535c264
1499 + path: ./pkgs/typed_data
1500 + uni_links:
1501 + git:
1502 + url: https://github.com/cake-tech/uni_links
1503 + ref: 1989db3f5d625e2fffbad7b85a3b1b8c78c6dfa1
1504 + path: ./uni_links
1505 + uni_links_platform_interface:
1506 + git:
1507 + url: https://github.com/avioli/uni_links
1508 + ref: cdd7a217d351a32c418afad18f8ea6893cfed05a
1509 + path: ./uni_links_platform_interface
1510 + uni_links_web:
1511 + git:
1512 + url: https://github.com/avioli/uni_links
1513 + ref: cf9d2b64dc3e890015d1dd6df7b6414123835663
1514 + path: ./uni_links_web
1515 + universal_ble:
1516 + git:
1517 + url: https://github.com/cake-tech/universal_ble.git
1518 + ref: 6735c1bdf7f42c501d51c20564eb957c3a12b981
1519 + universal_io:
1520 + git:
1521 + url: https://github.com/dart-io-packages/universal_io
1522 + ref: ed92942d149674621e7ae4ac46325e55ecee9368
1523 + universal_platform:
1524 + git:
1525 + url: https://github.com/gskinnerTeam/flutter-universal-platform
1526 + ref: f4fc405630cdd541d78457b0b4521b89456ea068
1527 + unorm_dart:
1528 + git:
1529 + url: https://github.com/yshrsmz/unorm-dart
1530 + ref: 3301bdc74e9644c69201db31e0daefb24fd10cd8
1531 + ur:
1532 + git:
1533 + url: https://github.com/bukata-sa/bc-ur-dart
1534 + ref: 5738f70d0ec3d50977ac3dd01fed62939600238b
1535 + url_launcher:
1536 + git:
1537 + url: https://github.com/flutter/packages
1538 + ref: 3fe6a0149acebc9cb8707cf508d13f59fc372986
1539 + path: ./packages/url_launcher/url_launcher
1540 + url_launcher_android:
1541 + git:
1542 + url: https://github.com/flutter/packages
1543 + ref: 7287c7b7f1d51e8842f49df46dbd0af3bd1c1077
1544 + path: ./packages/url_launcher/url_launcher_android
1545 + url_launcher_ios:
1546 + git:
1547 + url: https://github.com/flutter/packages
1548 + ref: 9cac0573363b7bbe6bf32aca44582fb75ee67521
1549 + path: ./packages/url_launcher/url_launcher_ios
1550 + url_launcher_linux:
1551 + git:
1552 + url: https://github.com/flutter/packages
1553 + ref: 73d2f3eb966d36a44cbb943ea0e96dda3a2f8da2
1554 + path: ./packages/url_launcher/url_launcher_linux
1555 + url_launcher_macos:
1556 + git:
1557 + url: https://github.com/flutter/packages
1558 + ref: 18b9cc5f2b0820cb6164f0150958ba76db75c61a
1559 + path: ./packages/url_launcher/url_launcher_macos
1560 + url_launcher_platform_interface:
1561 + git:
1562 + url: https://github.com/flutter/packages
1563 + ref: ef349bec8ee9d5fa3f69d73aa78ab9bb84ae0aa7
1564 + path: ./packages/url_launcher/url_launcher_platform_interface
1565 + url_launcher_web:
1566 + git:
1567 + url: https://github.com/flutter/packages
1568 + ref: 67ec0d36293eb963590e0606c8bede379be4d142
1569 + path: ./packages/url_launcher/url_launcher_web
1570 + url_launcher_windows:
1571 + git:
1572 + url: https://github.com/flutter/packages
1573 + ref: 18b9cc5f2b0820cb6164f0150958ba76db75c61a
1574 + path: ./packages/url_launcher/url_launcher_windows
1575 + uuid:
1576 + git:
1577 + url: https://github.com/Daegalus/dart-uuid
1578 + ref: d602950818e4b11d097d26f5408b461f38248130
1579 + vector_graphics:
1580 + git:
1581 + url: https://github.com/flutter/packages
1582 + ref: caddb39d831fc9e7f9a2cbe5c87d75629adc35ac
1583 + path: ./packages/vector_graphics
1584 + vector_graphics_codec:
1585 + git:
1586 + url: https://github.com/flutter/packages
1587 + ref: 11a9fa8bf6e5a49d02aef0ba5c5a95037a2acbc3
1588 + path: ./packages/vector_graphics_codec
1589 + vector_graphics_compiler:
1590 + git:
1591 + url: https://github.com/flutter/packages
1592 + ref: 3d05e51b22d99c5362d2f1f7f5b80358dd4e9cb3
1593 + path: ./packages/vector_graphics_compiler
1594 + vector_math:
1595 + git:
1596 + url: https://github.com/google/vector_math.dart
1597 + ref: 13f185f7e97d559e003f5ac79201da12f9a01049
1598 + vm_service:
1599 + git:
1600 + url: https://github.com/dart-lang/sdk
1601 + ref: c70f78e7d682c158c15ca0c26c729b3ccb932284
1602 + path: ./pkg/vm_service
1603 + wakelock_plus:
1604 + git:
1605 + url: https://github.com/fluttercommunity/wakelock_plus
1606 + ref: e7301f64397c946fac4ee66acdfb545b666f4a43
1607 + path: ./wakelock_plus
1608 + wakelock_plus_platform_interface:
1609 + git:
1610 + url: https://github.com/fluttercommunity/wakelock_plus
1611 + ref: 302991238a66dd1f6b1e50b38f58d97d177cd9ab
1612 + path: ./wakelock_plus_platform_interface
1613 + wallet:
1614 + git:
1615 + url: https://github.com/xclud/dart_wallet
1616 + ref: aa5ba16f7a8a3a7789ca78330ce3877913f29a83
1617 + watcher:
1618 + git:
1619 + url: https://github.com/dart-lang/tools
1620 + ref: 67a0fea10d8402d427aca8aff95cdc3b16004fc2
1621 + path: ./pkgs/watcher
1622 + web:
1623 + git:
1624 + url: https://github.com/dart-lang/web
1625 + ref: 222164b5010cb0324d4132666f1d43750ffc6448
1626 + path: ./web
1627 + web3dart:
1628 + git:
1629 + url: https://github.com/cake-tech/web3dart.git
1630 + ref: aa3f932dbf54eda651b7bd01ad00204acf998bd0
1631 + web_socket:
1632 + git:
1633 + url: https://github.com/dart-lang/http
1634 + ref: 31da3556357cd9ba9205e20c9299a1d48c149382
1635 + path: ./pkgs/web_socket
1636 + web_socket_channel:
1637 + git:
1638 + url: https://github.com/dart-lang/http
1639 + ref: 63c477b466f650e8f5505d6d78dc283c2c2f9845
1640 + path: ./pkgs/web_socket_channel
1641 + webdriver:
1642 + git:
1643 + url: https://github.com/google/webdriver.dart
1644 + ref: e84e9ccbee3e0c38a149b7d964eb7ab6ccc78384
1645 + webkit_inspection_protocol:
1646 + git:
1647 + url: https://github.com/google/webkit_inspection_protocol.dart
1648 + ref: 82f0c1c46dfdba5edf7c5fa84456233121dd69e1
1649 + win32:
1650 + git:
1651 + url: https://github.com/halildurmus/win32
1652 + ref: 64b0a07ab7e1e3e7db6fca60c6b121d6cfd73709
1653 + path: ./packages/win32
1654 + win32_registry:
1655 + git:
1656 + url: https://github.com/halildurmus/win32_registry
1657 + ref: fd20025f9b6f0ce6937b3e7e4b923e51ae11e40f
1658 + x25519:
1659 + git:
1660 + url: https://github.com/Tougee/curve25519
1661 + ref: 61b636d53e03cd12c9d9f728f8be6821fb6e2581
1662 + xdg_directories:
1663 + git:
1664 + url: https://github.com/flutter/packages
1665 + ref: b33972233ecb894f2fd3d61a74dd1c300fac10c2
1666 + path: ./packages/xdg_directories
1667 + xml:
1668 + git:
1669 + url: https://github.com/renggli/dart-xml
1670 + ref: 83796f3dd0923590561d9d169d6ee2db46580099
1671 + yaml:
1672 + git:
1673 + url: https://github.com/dart-lang/tools
1674 + ref: 27f829e3752382beae9deb1e87029f9ed52ef32e
1675 + path: ./pkgs/yaml
1676 + yaml_edit:
1677 + git:
1678 + url: https://github.com/dart-lang/tools
1679 + ref: 119a499068a903222fbbefdea18ea59efdd417b9
1680 + path: ./pkgs/yaml_edit
1681 + zkool:
1682 + git:
1683 + url: https://github.com/cake-tech/zkool2.git
1684 + ref: 36e72b530c274c4a54a6127aadb94886e84d67bf
scripts/android/app_icon.sh
+2 -5
@@ -34,7 +34,7 @@ cp -a $APP_LOGO $APP_LOGO_DEST_PATH
34 cp -a $ANDROID_ICON $ANDROID_ICON_DEST_PATH
35 cp -a $ANDROID_ICON_SET/. $ANDROID_ICON_SET_DEST_PATH/
36
37 -set -x
37 +set +x
38 if [[ $GITHUB_HUH == "yeah" ]]; then
39 pwd
40 for file in $(find $CAKE_ROOT/android/app/src/main/res -name "*.png") $APP_LOGO $CAKEWALLET_PATH $ASSETS_DIR/images/cakewallet_logo.png $ASSETS_DIR/images/cakewallet_icon_*.png $(find $CAKEWALLET_ICON_SET_PATH -name "*.png"); do
@@ -42,7 +42,4 @@ if [[ $GITHUB_HUH == "yeah" ]]; then
42 bash $CAKE_ROOT/scripts/branch_icon.sh ${BRANCH_NAME}-asd $file &> /dev/null
43 done
44 fi
45 -set +x
46 -
47 -
48 -
45 +set -x
\ No newline at end of file
scripts/android/docker/Dockerfile.mwebd
+2
@@ -3,6 +3,8 @@ FROM --platform=linux/amd64 ${BASE_IMAGE} AS build
3
4 RUN mkdir -p /w/scripts/android
5 COPY pubspec_base.yaml /w/pubspec.yaml
6 +COPY pubspec_overrides.yaml /w/pubspec_overrides.yaml
7 +COPY pubspec_overrides.yaml /w/cw_mweb/pubspec_overrides.yaml
8 COPY cw_mweb/pubspec.yaml /w/cw_mweb/pubspec.yaml
9 COPY cw_mweb/ffigen_config.yaml /w/cw_mweb/ffigen_config.yaml
10 COPY cw_mweb/go /w/cw_mweb/go
scripts/android/docker/build.sh
+1 -1
@@ -55,7 +55,7 @@ torch_ver="$(tinysha $SCRIPT_DIR/Dockerfile.torch $REPO_ROOT/scripts/prepare_tor
55 reown_ver=$(tinysha $SCRIPT_DIR/Dockerfile.reown $REPO_ROOT/scripts/prepare_reown.sh $REPO_ROOT/scripts/android/build_reown_deps.sh)
56 bitbox_ver=$(tinysha $SCRIPT_DIR/Dockerfile.bitbox $REPO_ROOT/scripts/build_bitbox_flutter.sh)
57 monero_ver=$(tinysha $SCRIPT_DIR/Dockerfile.monero $REPO_ROOT/scripts/prepare_moneroc.sh $REPO_ROOT/scripts/android/build_monero_all.sh)
58 -mwebd_ver=$(tinysha $SCRIPT_DIR/Dockerfile.mwebd $(find $REPO_ROOT/cw_mweb/go -type f))
58 +mwebd_ver=$(tinysha $SCRIPT_DIR/Dockerfile.mwebd $REPO_ROOT/pubspec_overrides.yaml $(find $REPO_ROOT/cw_mweb/go -type f))
59 zcash_ver=$(tinysha $SCRIPT_DIR/Dockerfile.zcash $REPO_ROOT/scripts/prepare_zcash.sh $REPO_ROOT/scripts/android/build_zcash.sh)
60 decred_ver=$(tinysha $SCRIPT_DIR/Dockerfile.torch $SCRIPT_DIR/Dockerfile.decred $REPO_ROOT/scripts/android/build_decred.sh $REPO_ROOT/cw_decred/pubspec.yaml)
61 echo $base_ver $torch_ver $reown_ver $bitbox_ver $monero_ver $mwebd_ver $zcash_ver $decred_ver > /tmp/docker_build_versions
scripts/compare_overrides.sh new
+222
@@ -0,0 +1,222 @@
1 +#!/bin/bash
2 +
3 +# usage:
4 +# ./compare_overrides.sh GIT_HASH_A GIT_HASH_B
5 +
6 +set -e
7 +cd "$(dirname "$0")/.."
8 +
9 +HASH_A=${1:?usage: ./compare_overrides.sh GIT_HASH_A GIT_HASH_B}
10 +HASH_B=${2:?usage: ./compare_overrides.sh GIT_HASH_A GIT_HASH_B}
11 +
12 +sdk_git_url=https://github.com/dart-lang/sdk
13 +
14 +yq() {
15 + go run github.com/mikefarah/yq/v4@latest "$@"
16 +}
17 +
18 +normalize_url() {
19 + echo "$1" | sed 's|\.git$||'
20 +}
21 +
22 +repo_cache_dir() {
23 + echo "scripts/.cache/repos/$(normalize_url "$1" | sed 's|https://github.com/||; s|/|_|g')"
24 +}
25 +
26 +ensure_repo_clone() {
27 + local url=$1 cache_dir=$2
28 + if [[ -d "${cache_dir}/.git" ]]; then
29 + git -C "$cache_dir" fetch --quiet origin
30 + else
31 + mkdir -p "$(dirname "$cache_dir")"
32 + if [[ "$(normalize_url "$url")" == "$sdk_git_url" ]]; then
33 + git clone --quiet --filter=blob:none "$url" "$cache_dir" || return 1
34 + else
35 + git clone --quiet "$url" "$cache_dir" || return 1
36 + fi
37 + fi
38 +}
39 +
40 +normalize_repo_path() {
41 + local path=$1
42 + [[ -z "$path" || "$path" == "-" ]] && return 0
43 + echo "${path#./}"
44 +}
45 +
46 +ensure_ref() {
47 + local cache_dir=$1 ref=$2
48 + git -C "$cache_dir" cat-file -e "${ref}^{commit}" 2>/dev/null && return 0
49 + git -C "$cache_dir" fetch --quiet origin "$ref" 2>/dev/null || true
50 + git -C "$cache_dir" cat-file -e "${ref}^{commit}" 2>/dev/null
51 +}
52 +
53 +count_lines_at_ref() {
54 + local cache_dir=$1 ref=$2 path=$3
55 + local repo_path file lines total=0
56 +
57 + ensure_ref "$cache_dir" "$ref" || return 1
58 + repo_path=$(normalize_repo_path "$path")
59 +
60 + while IFS= read -r file; do
61 + [[ -z "$file" ]] && continue
62 + lines=$(git -C "$cache_dir" show "$ref:$file" 2>/dev/null | wc -l | tr -d ' ')
63 + total=$((total + lines))
64 + done < <(
65 + if [[ -n "$repo_path" ]]; then
66 + git -C "$cache_dir" ls-tree -r --name-only "$ref" -- "$repo_path" 2>/dev/null
67 + else
68 + git -C "$cache_dir" ls-tree -r --name-only "$ref" 2>/dev/null
69 + fi
70 + )
71 +
72 + echo "$total"
73 +}
74 +
75 +print_ref_diff() {
76 + local cache_dir=$1 old_ref=$2 new_ref=$3 old_path=$4 new_path=$5
77 + local repo_path diff_paths=() path
78 +
79 + ensure_ref "$cache_dir" "$old_ref" || {
80 + echo " diff (old ref not found: $old_ref)"
81 + return 1
82 + }
83 + ensure_ref "$cache_dir" "$new_ref" || {
84 + echo " diff (new ref not found: $new_ref)"
85 + return 1
86 + }
87 +
88 + for path in "$old_path" "$new_path"; do
89 + repo_path=$(normalize_repo_path "$path")
90 + [[ -z "$repo_path" ]] && continue
91 + [[ " ${diff_paths[*]} " == *" $repo_path "* ]] && continue
92 + diff_paths+=("$repo_path")
93 + done
94 +
95 + if [[ ${#diff_paths[@]} -eq 0 ]]; then
96 + git -C "$cache_dir" diff --stat "$old_ref" "$new_ref" | sed 's/^/ /'
97 + else
98 + git -C "$cache_dir" diff --stat "$old_ref" "$new_ref" -- "${diff_paths[@]}" | sed 's/^/ /'
99 + fi
100 +}
101 +
102 +overrides_json_git() {
103 + git show "${1}:pubspec_overrides.yaml" | yq -o=json '.dependency_overrides // {}'
104 +}
105 +
106 +overrides_json_worktree() {
107 + yq -o=json '.dependency_overrides // {}' pubspec_overrides.yaml
108 +}
109 +
110 +print_git_fields() {
111 + local pkg=$1 old_url=$2 new_url=$3 old_ref=$4 new_ref=$5 old_path=$6 new_path=$7
112 + echo " $pkg"
113 + echo " url $old_url -> $new_url"
114 + echo " ref $old_ref -> $new_ref"
115 + echo " path $old_path -> $new_path"
116 +}
117 +
118 +print_new_repo_stats() {
119 + local new_url=$1 new_ref=$2 new_path=$3 cache_dir loc
120 +
121 + [[ "$new_url" == "-" || "$new_ref" == "-" ]] && return 0
122 +
123 + cache_dir=$(repo_cache_dir "$new_url")
124 + if ! ensure_repo_clone "$new_url" "$cache_dir"; then
125 + echo " loc (clone failed)"
126 + return 0
127 + fi
128 +
129 + if loc=$(count_lines_at_ref "$cache_dir" "$new_ref" "$new_path"); then
130 + echo " loc $loc lines"
131 + else
132 + echo " loc (ref not found: $new_ref)"
133 + fi
134 +}
135 +
136 +print_changed_ref_stats() {
137 + local url=$1 old_ref=$2 new_ref=$3 old_path=$4 new_path=$5 cache_dir
138 +
139 + [[ "$url" == "-" || "$old_ref" == "-" || "$new_ref" == "-" ]] && return 0
140 +
141 + cache_dir=$(repo_cache_dir "$url")
142 + if ! ensure_repo_clone "$url" "$cache_dir"; then
143 + echo " diff (clone failed)"
144 + return 0
145 + fi
146 +
147 + print_ref_diff "$cache_dir" "$old_ref" "$new_ref" "$old_path" "$new_path"
148 +}
149 +
150 +compare_overrides_jq='
151 + def git($obj; $pkg): $obj[$pkg].git // null;
152 + def fields($obj; $pkg):
153 + git($obj; $pkg) as $g |
154 + [($g.url // ""), ($g.ref // ""), ($g.path // "")];
155 + def dash($v): if $v == "" then "-" else $v end;
156 +'
157 +
158 +resolved_a=$(git rev-parse "$HASH_A")
159 +resolved_b=$(git rev-parse "$HASH_B")
160 +resolved_head=$(git rev-parse HEAD)
161 +
162 +if [[ "$resolved_a" == "$resolved_b" ]]; then
163 + json_a=$(overrides_json_git "$HASH_A")
164 + json_b=$(overrides_json_git "$HASH_B")
165 +elif [[ "$resolved_b" == "$resolved_head" ]]; then
166 + json_a=$(overrides_json_git "$HASH_A")
167 + json_b=$(overrides_json_worktree)
168 +else
169 + json_a=$(overrides_json_git "$HASH_A")
170 + json_b=$(overrides_json_git "$HASH_B")
171 +fi
172 +
173 +new_output=$(
174 + jq -r -n --argjson a "$json_a" --argjson b "$json_b" "$compare_overrides_jq"'
175 + ($b | keys[] | select(git($b; .))) as $pkg |
176 + select((git($a; $pkg) | not) or git($a; $pkg).url != git($b; $pkg).url) |
177 + (fields($a; $pkg)) as $old |
178 + (fields($b; $pkg)) as $new |
179 + [
180 + $pkg,
181 + dash($old[0]), dash($new[0]),
182 + dash($old[1]), dash($new[1]),
183 + dash($old[2]), dash($new[2])
184 + ] | @tsv
185 + ' | while IFS=$'\t' read -r pkg old_url new_url old_ref new_ref old_path new_path; do
186 + print_git_fields "$pkg" "$old_url" "$new_url" "$old_ref" "$new_ref" "$old_path" "$new_path"
187 + print_new_repo_stats "$new_url" "$new_ref" "$new_path"
188 + done
189 +)
190 +
191 +changed_output=$(
192 + jq -r -n --argjson a "$json_a" --argjson b "$json_b" "$compare_overrides_jq"'
193 + ($b | keys[] | select(git($b; .) and git($a; .))) as $pkg |
194 + select(git($a; $pkg).url == git($b; $pkg).url) |
195 + select((git($a; $pkg).ref // "") != (git($b; $pkg).ref // "")) |
196 + (fields($a; $pkg)) as $old |
197 + (fields($b; $pkg)) as $new |
198 + [
199 + $pkg,
200 + dash($old[0]), dash($new[0]),
201 + dash($old[1]), dash($new[1]),
202 + dash($old[2]), dash($new[2])
203 + ] | @tsv
204 + ' | while IFS=$'\t' read -r pkg old_url new_url old_ref new_ref old_path new_path; do
205 + print_git_fields "$pkg" "$old_url" "$new_url" "$old_ref" "$new_ref" "$old_path" "$new_path"
206 + print_changed_ref_stats "$new_url" "$old_ref" "$new_ref" "$old_path" "$new_path"
207 + done
208 +)
209 +
210 +if [[ -n "$new_output" ]]; then
211 + echo "new git repos:"
212 + echo "$new_output"
213 +fi
214 +
215 +if [[ -n "$new_output" && -n "$changed_output" ]]; then
216 + echo
217 +fi
218 +
219 +if [[ -n "$changed_output" ]]; then
220 + echo "changed git refs:"
221 + echo "$changed_output"
222 +fi
scripts/create_overrides.sh new
+624
@@ -0,0 +1,624 @@
1 +#!/bin/bash
2 +
3 +# Hello! o/
4 +# If you are think there's a chance that you
5 +# 1) want to update flutter sdk
6 +# 2) want to update some dependency
7 +# 3) want to add some dependency
8 +# 4) are forking a dependency
9 +# 5) something in the build process broke and you want to blame dependency pinning
10 +# 6) the script is failing
11 +#
12 +# In cases 1, 2, 3 you don't need to edit this script at all. Just add the dependency
13 +# to either pubspec_base.yaml or cw_*/pubspec.yaml. and re-run this script.
14 +# In case 4 (or 6), do the same and add the dependency to
15 +# package_repo_redirects - to redirect the dependency to your fork.
16 +# repo_redirects - if the dependency was moved between git repos.
17 +# version_ref_maps / dart_sdk_packages - if the dependency cannot be found upstream.
18 +# In case 5 remove pubspec_overrides.yaml, and just build the app. There is a non-zero
19 +# chance that it won't work. And if it works look for the diff between whatever is on git
20 +# and whatever is published on pub.dev tarball.
21 +# The script is designed in a way in which it is optional (so not using it should
22 +# still result in a working build).
23 +# In case of doubt git blame and ask the author ^^
24 +
25 +set -e
26 +
27 +cd "$(dirname "$0")/.."
28 +
29 +yq() {
30 + go run github.com/mikefarah/yq/v4@latest "$@"
31 +}
32 +
33 +lockfile="$(pwd)/pubspec.lock"
34 +pubspec_base="$(pwd)/pubspec_base.yaml"
35 +overrides_file="$(pwd)/pubspec_overrides.yaml"
36 +sdk_git_url=https://github.com/dart-lang/sdk
37 +
38 +resolved_git_path=""
39 +resolved_ref=""
40 +git_url=""
41 +override_url=""
42 +override_path=""
43 +version_ref_map_skip_verify=0
44 +
45 +# old git url|new git url
46 +repo_redirects=(
47 + "https://github.com/cmdrootaccess/another-flushbar|https://github.com/ideployed/another-flushbar"
48 + "https://github.com/anicdh|https://github.com/MrCyjaneK/bs58check.git"
49 + "https://github.com/MedzikUser/libcrypto-dart|https://github.com/MrCyjaneK/libcrypto.git"
50 + "https://github.com/rive-app/rive-flutter|https://github.com/MrCyjaneK/rive-flutter-no-lfs"
51 + "https://github.com/dart-lang/ffi|https://github.com/dart-lang/native"
52 +)
53 +
54 +# package|old git url|new git url (to move only one package out of a shared repo)
55 +package_repo_redirects=(
56 + "rive_common|https://github.com/rive-app/rive-flutter|https://github.com/MrCyjaneK/rive_common"
57 + "fixnum_nanodart|https://github.com/dart-lang/fixnum|https://github.com/MrCyjaneK/fixnum_nanodart"
58 +)
59 +
60 +# package-version|git hash (exact match, or package-* to skip version check)
61 +version_ref_maps=(
62 + "ffi-2.1.0|6bd0935f29c7294ebb9aab21c06b47b513def933"
63 + "flutter_rust_bridge-2.11.1|f19087cd0cac019b82d52cfa5153ce81b1b6e902"
64 +)
65 +
66 +dart_sdk_ref=$(cat $(dirname $(dirname $(which flutter)))/bin/cache/dart-sdk/revision)
67 +dart_sdk_packages=(
68 + js vm_service
69 +)
70 +
71 +# Kept on pub.dev
72 +skip_git_pin_packages=(
73 + _fe_analyzer_shared
74 + analyzer
75 + meta
76 +)
77 +
78 +lookup_version_ref_map() {
79 + local pkg=$1 ver=$2 entry key ref sdk_pkg
80 + version_ref_map_skip_verify=0
81 + for sdk_pkg in "${dart_sdk_packages[@]}"; do
82 + [[ "$pkg" == "$sdk_pkg" ]] || continue
83 + version_ref_map_skip_verify=1
84 + echo "$dart_sdk_ref"
85 + return 0
86 + done
87 + for entry in "${version_ref_maps[@]}"; do
88 + key="${entry%%|*}"
89 + ref="${entry#*|}"
90 + if [[ "$key" == "${pkg}-${ver}" ]]; then
91 + echo "$ref"
92 + return 0
93 + fi
94 + if [[ "$key" == "${pkg}-*" ]]; then
95 + version_ref_map_skip_verify=1
96 + echo "$ref"
97 + return 0
98 + fi
99 + done
100 + return 1
101 +}
102 +
103 +is_dart_sdk_package() {
104 + local pkg=$1 sdk_pkg
105 + for sdk_pkg in "${dart_sdk_packages[@]}"; do
106 + [[ "$pkg" == "$sdk_pkg" ]] && return 0
107 + done
108 + return 1
109 +}
110 +
111 +is_skip_git_pin_package() {
112 + local pkg=$1 skip_pkg
113 + for skip_pkg in "${skip_git_pin_packages[@]}"; do
114 + [[ "$pkg" == "$skip_pkg" ]] && return 0
115 + done
116 + return 1
117 +}
118 +
119 +apply_default_overrides() {
120 + [[ -f "$pubspec_base" ]] || return 0
121 +
122 + awk '
123 + /^# dependency_overrides:/ {
124 + in_block = 1
125 + print "dependency_overrides:"
126 + next
127 + }
128 + in_block && /^#[[:space:]]/ {
129 + sub(/^#[[:space:]]?/, "")
130 + print
131 + next
132 + }
133 + in_block && /^#/ {
134 + sub(/^#/, "")
135 + print
136 + next
137 + }
138 + in_block { exit }
139 + ' "$pubspec_base" > "$overrides_file"
140 +
141 + if [[ ! -s "$overrides_file" ]]; then
142 + rm -f "$overrides_file"
143 + return 0
144 + fi
145 +
146 + echo "applied default overrides from ${pubspec_base}"
147 +}
148 +
149 +normalize_url() {
150 + echo "$1" | sed 's|\.git$||'
151 +}
152 +
153 +normalize_git_path() {
154 + local path=$1
155 + [[ -z "$path" || "$path" == "." ]] && return 0
156 + [[ "$path" == ./* ]] && { echo "$path"; return 0; }
157 + echo "./${path}"
158 +}
159 +
160 +redirect_git_url() {
161 + local url=$1 package=${2:-} entry rest old new
162 + url=$(normalize_url "$url")
163 +
164 + if [[ -n "$package" ]]; then
165 + for entry in "${package_repo_redirects[@]}"; do
166 + [[ "${entry%%|*}" != "$package" ]] && continue
167 + rest="${entry#*|}"
168 + old=$(normalize_url "${rest%%|*}")
169 + new=$(normalize_url "${rest#*|}")
170 + [[ "$url" == "$old" ]] && { echo "$new"; return 0; }
171 + done
172 + fi
173 +
174 + for entry in "${repo_redirects[@]}"; do
175 + old=$(normalize_url "${entry%%|*}")
176 + new=$(normalize_url "${entry#*|}")
177 + [[ "$url" == "$old" ]] && { echo "$new"; return 0; }
178 + done
179 + echo "$1"
180 +}
181 +
182 +parse_github_repo_url() {
183 + local url=$1
184 + if [[ "$url" =~ github\.com/([^/]+)/([^/?#]+) ]]; then
185 + git_owner="${BASH_REMATCH[1]}"
186 + git_repo="${BASH_REMATCH[2]%.git}"
187 + git_url="https://github.com/${git_owner}/${git_repo}"
188 + if [[ "$url" =~ github\.com/[^/]+/[^/]+/(tree|blob)/[^/]+/(.+) ]]; then
189 + git_path="./${BASH_REMATCH[2]}"
190 + else
191 + git_path=""
192 + fi
193 + return 0
194 + fi
195 + return 1
196 +}
197 +
198 +pubdev_cache_file() {
199 + echo "$(pwd)/scripts/.cache/pubdev/${1}/${2}.json"
200 +}
201 +
202 +pubdev_repo_url() {
203 + local pkg=$1 ver=$2 cache_file
204 + cache_file=$(pubdev_cache_file "$pkg" "$ver")
205 + if [[ -f "$cache_file" ]]; then
206 + jq -r '.pubspec.repository // .pubspec.homepage // empty' "$cache_file"
207 + return 0
208 + fi
209 + mkdir -p "$(dirname "$cache_file")"
210 + curl -sf "https://pub.dev/api/packages/${pkg}/versions/${ver}" >"$cache_file"
211 + jq -r '.pubspec.repository // .pubspec.homepage // empty' "$cache_file"
212 +}
213 +
214 +repo_cache_dir() {
215 + echo "scripts/.cache/repos/$(normalize_url "$1" | sed 's|https://github.com/||; s|/|_|g')"
216 +}
217 +
218 +locks_dir="$(pwd)/scripts/.cache/locks"
219 +rm -rf $locks_dir
220 +mkdir -p $locks_dir
221 +
222 +repo_lock_file() {
223 + local key=$1
224 + if [[ "$key" == */* || "$key" == scripts/* ]]; then
225 + echo "${locks_dir}/repo-$(basename "$key").lock"
226 + else
227 + echo "${locks_dir}/repo-$(normalize_url "$key" | sed 's|https://github.com/||; s|/|_|g').lock"
228 + fi
229 +}
230 +
231 +with_lock() {
232 + local lockpath=$1; shift
233 + mkdir -p "$(dirname "$lockpath")"
234 + while ! mkdir "$lockpath" 2>/dev/null; do
235 + sleep 0.05
236 + done
237 + local rc=0
238 + "$@" || rc=$?
239 + rmdir "$lockpath" 2>/dev/null || true
240 + return "$rc"
241 +}
242 +
243 +with_repo_lock() {
244 + with_lock "$(repo_lock_file "$1")" "${@:2}"
245 +}
246 +
247 +with_overrides_lock() {
248 + with_lock "${locks_dir}/overrides.lock" "$@"
249 +}
250 +
251 +_ensure_repo_clone() {
252 + local url=$1 cache_dir=$2
253 + [[ -d "${cache_dir}/.git" ]] && return 0
254 + mkdir -p "$(dirname "$cache_dir")"
255 + if [[ "$(normalize_url "$url")" == "$sdk_git_url" ]]; then
256 + git clone --quiet --filter=blob:none "$url" "$cache_dir" || return 1
257 + else
258 + git clone --quiet "$url" "$cache_dir" || return 1
259 + fi
260 +}
261 +
262 +ensure_repo_clone() {
263 + local url=$1 cache_dir=$2
264 + with_repo_lock "$cache_dir" _ensure_repo_clone "$url" "$cache_dir"
265 +}
266 +
267 +_ensure_git_ref() {
268 + local cache_dir=$1 ref=$2
269 + git -C "$cache_dir" cat-file -e "${ref}^{commit}" 2>/dev/null
270 +}
271 +
272 +ensure_git_ref() {
273 + with_repo_lock "$1" _ensure_git_ref "$@"
274 +}
275 +
276 +pubspec_field() {
277 + local content=$1 field=$2
278 + echo "$content" |
279 + grep -E "^${field}:[[:space:]]*" |
280 + head -1 |
281 + sed "s/^${field}:[[:space:]]*//" |
282 + tr -d "\"'" |
283 + sed 's/[[:space:]]*$//'
284 +}
285 +
286 +pubspec_matches() {
287 + local content=$1 package=$2 ver=${3:-}
288 + [[ "$(pubspec_field "$content" name)" == "$package" ]] || return 1
289 + [[ -z "$ver" || "$(pubspec_field "$content" version)" == "$ver" ]]
290 +}
291 +
292 +build_path_candidates() {
293 + local url=$1 package=$2 path=$3
294 + local candidate candidates=() seen=""
295 +
296 + add_candidate() {
297 + local c=$1
298 + if [[ -z "$c" ]]; then
299 + [[ " $seen " == *" __ROOT__ "* ]] && return
300 + seen="$seen __ROOT__"
301 + candidates+=("")
302 + return
303 + fi
304 + [[ " $seen " == *" $c "* ]] && return
305 + seen="$seen $c"
306 + candidates+=("$c")
307 + }
308 +
309 + if [[ -n "$path" ]]; then
310 + local normalized="${path#./}"
311 + normalized="${normalized%/}"
312 + if [[ "$normalized" != "packages" ]]; then
313 + local cache_dir content
314 + cache_dir=$(repo_cache_dir "$url")
315 + if ensure_repo_clone "$url" "$cache_dir"; then
316 + content=$(git -C "$cache_dir" show "HEAD:${normalized}/pubspec.yaml" 2>/dev/null) || content=""
317 + pubspec_matches "$content" "$package" && add_candidate "$normalized"
318 + fi
319 + fi
320 + fi
321 +
322 + local cache_dir pubspec_path dir content
323 + cache_dir=$(repo_cache_dir "$url")
324 + if ensure_repo_clone "$url" "$cache_dir"; then
325 + while IFS= read -r pubspec_path; do
326 + dir=$(dirname "$pubspec_path")
327 + content=$(git -C "$cache_dir" show "HEAD:${pubspec_path}" 2>/dev/null) || continue
328 + pubspec_matches "$content" "$package" || continue
329 + add_candidate "$dir"
330 + done < <(git -C "$cache_dir" ls-files | grep '/pubspec.yaml$')
331 + fi
332 +
333 + add_candidate "pkgs/${package}"
334 + add_candidate "packages/${package}"
335 + add_candidate "${package}"
336 + add_candidate ""
337 + printf '%s\n' "${candidates[@]}"
338 +}
339 +
340 +find_path_at_ref() {
341 + local url=$1 ref=$2 package=$3 ver=$4 hint_path=$5
342 + local cache_dir candidate pubspec_file content
343 +
344 + cache_dir=$(repo_cache_dir "$url")
345 + ensure_repo_clone "$url" "$cache_dir" || return 1
346 + ensure_git_ref "$cache_dir" "$ref" || return 1
347 +
348 + while IFS= read -r candidate; do
349 + pubspec_file=$([[ -n "$candidate" ]] && echo "${candidate}/pubspec.yaml" || echo "pubspec.yaml")
350 + content=$(git -C "$cache_dir" show "${ref}:${pubspec_file}" 2>/dev/null) || continue
351 + pubspec_matches "$content" "$package" "$ver" || continue
352 + [[ -n "$candidate" ]] && echo "./${candidate}"
353 + return 0
354 + done < <(build_path_candidates "$url" "$package" "$hint_path")
355 + return 1
356 +}
357 +
358 +_resolve_tag_ref() {
359 + local url=$1 pkg=$2 ver=$3 cache_dir ref tag
360 +
361 + cache_dir=$(repo_cache_dir "$url")
362 + _ensure_repo_clone "$url" "$cache_dir" || return 1
363 +
364 + for tag in "${ver}" "v${ver}" "${pkg}-${ver}" "${pkg}-v${ver}"; do
365 + ref=$(git -C "$cache_dir" rev-parse -q "refs/tags/${tag}^{commit}" 2>/dev/null) && {
366 + echo "$ref"
367 + return 0
368 + }
369 + ref=$(git -C "$cache_dir" rev-parse -q "refs/tags/${tag}" 2>/dev/null) && {
370 + echo "$ref"
371 + return 0
372 + }
373 + done
374 + return 1
375 +}
376 +
377 +resolve_tag_ref() {
378 + with_repo_lock "$1" _resolve_tag_ref "$@"
379 +}
380 +
381 +find_commit_for_package_version() {
382 + local url=$1 package=$2 ver=$3 hint_path=$4
383 + local cache_dir candidate pubspec_file ref content ver_try log_args
384 + local -a version_attempts=("$ver")
385 +
386 + [[ "$ver" != *-dev ]] && version_attempts+=("${ver}-dev")
387 +
388 + cache_dir=$(repo_cache_dir "$url")
389 + ensure_repo_clone "$url" "$cache_dir" || return 1
390 +
391 + while IFS= read -r candidate; do
392 + pubspec_file=$([[ -n "$candidate" ]] && echo "${candidate}/pubspec.yaml" || echo "pubspec.yaml")
393 + for ver_try in "${version_attempts[@]}"; do
394 + [[ "$ver_try" == "$ver" ]] && log_args=(--reverse) || log_args=()
395 + for ref in $(git -C "$cache_dir" log "${log_args[@]}" --format=%H -- "$pubspec_file" 2>/dev/null); do
396 + content=$(git -C "$cache_dir" show "${ref}:${pubspec_file}" 2>/dev/null) || continue
397 + pubspec_matches "$content" "$package" "$ver_try" || continue
398 + resolved_git_path=""
399 + [[ -n "$candidate" ]] && resolved_git_path="./${candidate}"
400 + resolved_ref="$ref"
401 + return 0
402 + done
403 + done
404 + done < <(build_path_candidates "$url" "$package" "$hint_path")
405 + return 1
406 +}
407 +
408 +resolve_git_override_for_package() {
409 + local package=$1 version=$2 repo_url=$3
410 + local original_git_url hint_path tag_ref path
411 +
412 + repo_url=$(redirect_git_url "$repo_url" "$package")
413 + parse_github_repo_url "$repo_url" || return 1
414 +
415 + original_git_url="$git_url"
416 + hint_path="$git_path"
417 +
418 + path=$(find_path_at_ref "$git_url" HEAD "$package" "" "$hint_path" || true)
419 + if [[ -n "$path" ]]; then
420 + hint_path="$path"
421 + elif [[ -z "$hint_path" && "$git_url" != "$original_git_url" ]]; then
422 + path=$(find_path_at_ref "$original_git_url" HEAD "$package" "" "" || true)
423 + if [[ -n "$path" ]]; then
424 + git_url="$original_git_url"
425 + hint_path="$path"
426 + fi
427 + fi
428 +
429 + resolved_git_path=""
430 + resolved_ref=""
431 +
432 + tag_ref=$(resolve_tag_ref "$git_url" "$package" "$version" || true)
433 + if [[ -n "$tag_ref" ]] &&
434 + path=$(find_path_at_ref "$git_url" "$tag_ref" "$package" "$version" "$hint_path"); then
435 + resolved_git_path="$path"
436 + resolved_ref="$tag_ref"
437 + return 0
438 + fi
439 +
440 + find_commit_for_package_version "$git_url" "$package" "$version" "$hint_path"
441 +}
442 +
443 +resolve_mapped_override() {
444 + local package=$1 version=$2 source=$3 lock_git_url=$4 lock_git_path=$5 mapped_ref=$6
445 + local repo_url path_ver
446 +
447 + if is_dart_sdk_package "$package"; then
448 + override_url="$sdk_git_url"
449 + override_path="./pkg/${package}"
450 + return 0
451 + fi
452 +
453 + if [[ "$source" == "git" ]]; then
454 + [[ -n "$lock_git_url" ]] || return 1
455 + override_url=$(redirect_git_url "$lock_git_url" "$package")
456 + override_path=$(normalize_git_path "$lock_git_path")
457 + return 0
458 + fi
459 +
460 + [[ "$source" == "hosted" ]] || return 1
461 + repo_url=$(pubdev_repo_url "$package" "$version")
462 + [[ -n "$repo_url" ]] || return 1
463 + repo_url=$(redirect_git_url "$repo_url" "$package")
464 + parse_github_repo_url "$repo_url" || return 1
465 + override_url="$git_url"
466 + path_ver="$version"
467 + [[ "$version_ref_map_skip_verify" == 1 ]] && path_ver=""
468 + override_path=$(find_path_at_ref "$git_url" "$mapped_ref" "$package" "$path_ver" "" || true)
469 + [[ -n "$override_path" ]]
470 +}
471 +
472 +has_git_override_in_yaml() {
473 + local pkg=$1
474 + [[ -f "$overrides_file" ]] || return 1
475 + yq -e ".dependency_overrides.\"${pkg}\".git" "$overrides_file" >/dev/null 2>&1
476 +}
477 +
478 +_add_git_override_to_yaml() {
479 + local pkg=$1 url=$2 path=$3 ref=$4 yq_expr
480 +
481 + [[ -f "$overrides_file" ]] || printf 'dependency_overrides: {}\n' > "$overrides_file"
482 + if has_git_override_in_yaml "$pkg"; then
483 + echo "$pkg: OK (default override)"
484 + return 0
485 + fi
486 +
487 + yq -i "del(.dependency_overrides.\"${pkg}\")" "$overrides_file"
488 + yq_expr=".dependency_overrides.\"${pkg}\".git.url = \"${url}\" | .dependency_overrides.\"${pkg}\".git.ref = \"${ref}\""
489 + [[ -n "$path" ]] && yq_expr+=" | .dependency_overrides.\"${pkg}\".git.path = \"${path}\""
490 +
491 + yq -i "$yq_expr" "$overrides_file" || {
492 + echo "$pkg: failed to update ${overrides_file}" >&2
493 + return 1
494 + }
495 +
496 + echo "added to ${overrides_file}:"
497 + echo " ${pkg}:"
498 + echo " git:"
499 + echo " url: ${url}"
500 + [[ -n "$path" ]] && echo " path: ${path}"
501 + echo " ref: ${ref}"
502 +}
503 +
504 +add_git_override_to_yaml() {
505 + with_overrides_lock _add_git_override_to_yaml "$@"
506 +}
507 +
508 +sort_overrides_yaml() {
509 + yq -i \
510 + '.dependency_overrides = (.dependency_overrides | to_entries | sort_by(.key) | from_entries)' \
511 + "$overrides_file"
512 +}
513 +
514 +rm -f "$overrides_file"
515 +apply_default_overrides
516 +./configure_cake_wallet.sh android
517 +flutter pub get
518 +
519 +apply_default_overrides
520 +
521 +mkdir -p "$locks_dir"
522 +
523 +process_package() {
524 + local pkg=$1 package source version git_url git_ref git_path mapped_ref repo_url
525 +
526 + eval "$(jq -r '@sh "
527 + package=\(.package)
528 + source=\(.source)
529 + version=\(.version)
530 + git_url=\(.git_url)
531 + git_ref=\(.git_ref)
532 + git_path=\(.git_path)
533 + "' <<< "$pkg")"
534 +
535 + if has_git_override_in_yaml "$package"; then
536 + echo "$package: OK (default override)"
537 + return 0
538 + fi
539 +
540 + if is_skip_git_pin_package "$package"; then
541 + echo "$package: OK (version pinned, skipped)"
542 + return 0
543 + fi
544 +
545 + mapped_ref=$(lookup_version_ref_map "$package" "$version" || true)
546 + if [[ -n "$mapped_ref" ]]; then
547 + if ! resolve_mapped_override "$package" "$version" "$source" "$git_url" "$git_path" "$mapped_ref"; then
548 + echo "$package: NOT OK - could not apply version_ref_maps entry for ${version}" >&2
549 + return 1
550 + fi
551 + add_git_override_to_yaml "$package" "$override_url" "$override_path" "$mapped_ref" || return 1
552 + return 0
553 + fi
554 +
555 + case "$source" in
556 + git)
557 + if [[ -z "$git_url" || -z "$git_ref" ]]; then
558 + echo "$package: NOT OK - git dependency missing url or ref in ${lockfile}" >&2
559 + return 1
560 + fi
561 + add_git_override_to_yaml \
562 + "$package" \
563 + "$(redirect_git_url "$git_url" "$package")" \
564 + "$(normalize_git_path "$git_path")" \
565 + "$git_ref" || return 1
566 + ;;
567 + sdk)
568 + echo "$package: OK (sdk, skipped)"
569 + ;;
570 + hosted)
571 + repo_url=$(pubdev_repo_url "$package" "$version")
572 + if [[ -z "$repo_url" ]]; then
573 + echo "$package: NOT OK - could not find repository or homepage on pub.dev for ${version}"
574 + return 1
575 + fi
576 + if ! resolve_git_override_for_package "$package" "$version" "$repo_url"; then
577 + echo "$package: NOT OK - could not resolve git ref for version ${version} in ${git_url}"
578 + echo "# add manual mapping to version_ref_maps in scripts/create_overrides.sh:"
579 + echo "# \"${package}-${version}|GIT_HASH\""
580 + echo "# repository: ${repo_url}"
581 + return 1
582 + fi
583 + add_git_override_to_yaml "$package" "$git_url" "$resolved_git_path" "$resolved_ref" || return 1
584 + ;;
585 + path)
586 + echo "$package: OK (path, skipped)"
587 + ;;
588 + *)
589 + echo "$package: NOT OK - source=${source} (cannot auto-generate git override)"
590 + return 1
591 + ;;
592 + esac
593 +}
594 +
595 +max_jobs=16
596 +failed=0
597 +batch=()
598 +while IFS= read -r pkg; do
599 + process_package "$pkg" &
600 + batch+=($!)
601 + if ((${#batch[@]} >= max_jobs)); then
602 + for pid in "${batch[@]}"; do
603 + wait "$pid" || failed=1
604 + done
605 + batch=()
606 + fi
607 +done < <(
608 + yq -o json '.packages' "$lockfile" | jq -c '
609 + to_entries[] | {
610 + package: .key,
611 + source: (.value.source // ""),
612 + version: (.value.version // ""),
613 + git_url: (if (.value.description | type) == "object" then .value.description.url // "" else "" end),
614 + git_ref: (if (.value.description | type) == "object" then (.value.description["resolved-ref"] // .value.description.ref // "") else "" end),
615 + git_path: (if (.value.description | type) == "object" then .value.description.path // "" else "" end)
616 + }
617 + '
618 +)
619 +for pid in "${batch[@]}"; do
620 + wait "$pid" || failed=1
621 +done
622 +[[ "$failed" -eq 0 ]] || exit 1
623 +
624 +sort_overrides_yaml
scripts/linux/build_torch.sh
+1 -1
@@ -6,4 +6,4 @@ cd "$(dirname "$0")"
6
7 cd ../torch_dart
8
9 -# ./build.sh x86_64-linux-gnu
9 +./build.sh x86_64-linux-gnu
scripts/linux/docker/Dockerfile.mwebd
+2 -2
@@ -3,8 +3,8 @@ FROM --platform=linux/amd64 ${BASE_IMAGE} AS build
3
4 RUN mkdir -p /w/scripts/android
5 COPY pubspec_base.yaml /w/pubspec.yaml
6 -# COPY pubspec_overrides.yaml /w/pubspec_overrides.yaml
7 -# COPY pubspec_overrides.yaml /w/cw_mweb/pubspec_overrides.yaml
6 +COPY pubspec_overrides.yaml /w/pubspec_overrides.yaml
7 +COPY pubspec_overrides.yaml /w/cw_mweb/pubspec_overrides.yaml
8 COPY cw_mweb/pubspec.yaml /w/cw_mweb/pubspec.yaml
9 COPY cw_mweb/ffigen_config.yaml /w/cw_mweb/ffigen_config.yaml
10 COPY cw_mweb/go /w/cw_mweb/go
scripts/linux/docker/Dockerfile.torch
+1 -1
@@ -14,7 +14,7 @@ RUN groupadd -g "$GID" "$USER" && \
14 RUN sudo chown $UID:$GID -R /w /root
15 USER builder
16
17 -RUN /w/scripts/prepare_torch.sh
17 +RUN /w/scripts/linux/build_torch.sh && rm -rf /w/scripts/torch_dart/simplybs
18
19 FROM --platform=linux/amd64 alpine
20 COPY --from=build /w /w
scripts/linux/docker/build.sh
+1 -1
@@ -55,7 +55,7 @@ torch_ver="$(tinysha $SCRIPT_DIR/Dockerfile.torch $REPO_ROOT/scripts/prepare_tor
55 reown_ver=$(tinysha $SCRIPT_DIR/Dockerfile.reown $REPO_ROOT/scripts/prepare_reown.sh $REPO_ROOT/scripts/android/build_reown_deps.sh)
56 bitbox_ver=$(tinysha $SCRIPT_DIR/Dockerfile.bitbox $REPO_ROOT/scripts/build_bitbox_flutter.sh)
57 monero_ver=$(tinysha $SCRIPT_DIR/Dockerfile.monero $REPO_ROOT/scripts/prepare_moneroc.sh $REPO_ROOT/scripts/linux/build_monero_all.sh)
58 -mwebd_ver=$(tinysha $SCRIPT_DIR/Dockerfile.mwebd $REPO_ROOT/cw_mweb/pubspec.yaml $(find $REPO_ROOT/cw_mweb/go -type f))
58 +mwebd_ver=$(tinysha $SCRIPT_DIR/Dockerfile.mwebd $REPO_ROOT/pubspec_overrides.yaml $(find $REPO_ROOT/cw_mweb/go -type f))
59 zcash_ver=$(tinysha $SCRIPT_DIR/Dockerfile.zcash $REPO_ROOT/scripts/prepare_zcash.sh $REPO_ROOT/scripts/linux/build_zcash.sh)
60 echo $base_ver $torch_ver $reown_ver $bitbox_ver $monero_ver $mwebd_ver $zcash_ver > /tmp/docker_build_versions
61 final_ver=$(tinysha /tmp/docker_build_versions)