-
-
Notifications
You must be signed in to change notification settings - Fork 631
Expand file tree
/
Copy pathARCHITECTURE_2
More file actions
612 lines (611 loc) · 24.1 KB
/
Copy pathARCHITECTURE_2
File metadata and controls
612 lines (611 loc) · 24.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
%%{
init: {
"theme": "base",
"maxEdges": 1000,
"themeVariables": {
"mainBkg": "#121418",
"primaryColor": "#1b3a1b",
"primaryTextColor": "#e0e3de",
"primaryBorderColor": "#76c893",
"nodeBorder": "#76c893",
"lineColor": "#76c893",
"secondaryColor": "#1f2721",
"tertiaryColor": "#232c26",
"clusterBkg": "#182018",
"clusterBorder": "#4caf50",
"nodeTextColor": "#e0e3de",
"edgeLabelBackground": "#111316",
"edgeLabelColor": "#cfe9de",
"fontSize": "28px",
"fontFamily": "JetBrains Mono, Inter, system-ui"
}
}
}%%
graph LR
subgraph :core
:core:data("data")
:core:ui("ui")
:core:domain("domain")
:core:resources("resources")
:core:settings("settings")
:core:di("di")
:core:crash("crash")
:core:utils("utils")
:core:filters("filters")
:core:ksp("ksp")
end
subgraph :feature
:feature:root("root")
:feature:main("main")
:feature:load-net-image("load-net-image")
:feature:crop("crop")
:feature:limits-resize("limits-resize")
:feature:cipher("cipher")
:feature:image-preview("image-preview")
:feature:weight-resize("weight-resize")
:feature:compare("compare")
:feature:delete-exif("delete-exif")
:feature:palette-tools("palette-tools")
:feature:resize-convert("resize-convert")
:feature:pdf-tools("pdf-tools")
:feature:single-edit("single-edit")
:feature:erase-background("erase-background")
:feature:draw("draw")
:feature:filters("filters")
:feature:image-stitch("image-stitch")
:feature:pick-color("pick-color")
:feature:recognize-text("recognize-text")
:feature:gradient-maker("gradient-maker")
:feature:watermarking("watermarking")
:feature:gif-tools("gif-tools")
:feature:apng-tools("apng-tools")
:feature:zip("zip")
:feature:jxl-tools("jxl-tools")
:feature:settings("settings")
:feature:easter-egg("easter-egg")
:feature:svg-maker("svg-maker")
:feature:format-conversion("format-conversion")
:feature:document-scanner("document-scanner")
:feature:scan-qr-code("scan-qr-code")
:feature:image-stacking("image-stacking")
:feature:image-splitting("image-splitting")
:feature:color-tools("color-tools")
:feature:webp-tools("webp-tools")
:feature:noise-generation("noise-generation")
:feature:collage-maker("collage-maker")
:feature:libraries-info("libraries-info")
:feature:markup-layers("markup-layers")
:feature:base64-tools("base64-tools")
:feature:checksum-tools("checksum-tools")
:feature:mesh-gradients("mesh-gradients")
:feature:edit-exif("edit-exif")
:feature:image-cutting("image-cutting")
:feature:audio-cover-extractor("audio-cover-extractor")
:feature:library-details("library-details")
:feature:wallpapers-export("wallpapers-export")
:feature:ascii-art("ascii-art")
:feature:ai-tools("ai-tools")
:feature:color-library("color-library")
:feature:media-picker("media-picker")
:feature:quick-tiles("quick-tiles")
end
subgraph :lib
:lib:neural-tools("neural-tools")
:lib:opencv-tools("opencv-tools")
:lib:dynamic-theme("dynamic-theme")
:lib:snowfall("snowfall")
:lib:documentscanner("documentscanner")
:lib:collages("collages")
:lib:palette("palette")
:lib:curves("curves")
:lib:ascii("ascii")
end
:feature:root --> :core:data
:feature:root --> :core:ui
:feature:root --> :core:domain
:feature:root --> :core:resources
:feature:root --> :core:settings
:feature:root --> :core:di
:feature:root --> :core:crash
:feature:root --> :feature:main
:feature:root --> :feature:load-net-image
:feature:root --> :feature:crop
:feature:root --> :feature:limits-resize
:feature:root --> :feature:cipher
:feature:root --> :feature:image-preview
:feature:root --> :feature:weight-resize
:feature:root --> :feature:compare
:feature:root --> :feature:delete-exif
:feature:root --> :feature:palette-tools
:feature:root --> :feature:resize-convert
:feature:root --> :feature:pdf-tools
:feature:root --> :feature:single-edit
:feature:root --> :feature:erase-background
:feature:root --> :feature:draw
:feature:root --> :feature:filters
:feature:root --> :feature:image-stitch
:feature:root --> :feature:pick-color
:feature:root --> :feature:recognize-text
:feature:root --> :feature:gradient-maker
:feature:root --> :feature:watermarking
:feature:root --> :feature:gif-tools
:feature:root --> :feature:apng-tools
:feature:root --> :feature:zip
:feature:root --> :feature:jxl-tools
:feature:root --> :feature:settings
:feature:root --> :feature:easter-egg
:feature:root --> :feature:svg-maker
:feature:root --> :feature:format-conversion
:feature:root --> :feature:document-scanner
:feature:root --> :feature:scan-qr-code
:feature:root --> :feature:image-stacking
:feature:root --> :feature:image-splitting
:feature:root --> :feature:color-tools
:feature:root --> :feature:webp-tools
:feature:root --> :feature:noise-generation
:feature:root --> :feature:collage-maker
:feature:root --> :feature:libraries-info
:feature:root --> :feature:markup-layers
:feature:root --> :feature:base64-tools
:feature:root --> :feature:checksum-tools
:feature:root --> :feature:mesh-gradients
:feature:root --> :feature:edit-exif
:feature:root --> :feature:image-cutting
:feature:root --> :feature:audio-cover-extractor
:feature:root --> :feature:library-details
:feature:root --> :feature:wallpapers-export
:feature:root --> :feature:ascii-art
:feature:root --> :feature:ai-tools
:feature:root --> :feature:color-library
:feature:erase-background --> :core:data
:feature:erase-background --> :core:ui
:feature:erase-background --> :core:domain
:feature:erase-background --> :core:resources
:feature:erase-background --> :core:settings
:feature:erase-background --> :core:di
:feature:erase-background --> :core:crash
:feature:erase-background --> :lib:neural-tools
:feature:erase-background --> :feature:draw
:feature:edit-exif --> :core:data
:feature:edit-exif --> :core:ui
:feature:edit-exif --> :core:domain
:feature:edit-exif --> :core:resources
:feature:edit-exif --> :core:settings
:feature:edit-exif --> :core:di
:feature:edit-exif --> :core:crash
:feature:limits-resize --> :core:data
:feature:limits-resize --> :core:ui
:feature:limits-resize --> :core:domain
:feature:limits-resize --> :core:resources
:feature:limits-resize --> :core:settings
:feature:limits-resize --> :core:di
:feature:limits-resize --> :core:crash
:feature:jxl-tools --> :core:data
:feature:jxl-tools --> :core:ui
:feature:jxl-tools --> :core:domain
:feature:jxl-tools --> :core:resources
:feature:jxl-tools --> :core:settings
:feature:jxl-tools --> :core:di
:feature:jxl-tools --> :core:crash
:feature:libraries-info --> :core:data
:feature:libraries-info --> :core:ui
:feature:libraries-info --> :core:domain
:feature:libraries-info --> :core:resources
:feature:libraries-info --> :core:settings
:feature:libraries-info --> :core:di
:feature:libraries-info --> :core:crash
:feature:gif-tools --> :core:data
:feature:gif-tools --> :core:ui
:feature:gif-tools --> :core:domain
:feature:gif-tools --> :core:resources
:feature:gif-tools --> :core:settings
:feature:gif-tools --> :core:di
:feature:gif-tools --> :core:crash
:feature:library-details --> :core:data
:feature:library-details --> :core:ui
:feature:library-details --> :core:domain
:feature:library-details --> :core:resources
:feature:library-details --> :core:settings
:feature:library-details --> :core:di
:feature:library-details --> :core:crash
:feature:pdf-tools --> :core:data
:feature:pdf-tools --> :core:ui
:feature:pdf-tools --> :core:domain
:feature:pdf-tools --> :core:resources
:feature:pdf-tools --> :core:settings
:feature:pdf-tools --> :core:di
:feature:pdf-tools --> :core:crash
:feature:watermarking --> :core:data
:feature:watermarking --> :core:ui
:feature:watermarking --> :core:domain
:feature:watermarking --> :core:resources
:feature:watermarking --> :core:settings
:feature:watermarking --> :core:di
:feature:watermarking --> :core:crash
:feature:watermarking --> :feature:compare
:app --> :core:data
:app --> :core:ui
:app --> :core:domain
:app --> :core:resources
:app --> :core:settings
:app --> :core:di
:app --> :core:crash
:app --> :core:utils
:app --> :feature:root
:app --> :feature:media-picker
:app --> :feature:quick-tiles
:app --> :lib:opencv-tools
:app --> :lib:neural-tools
:feature:resize-convert --> :core:data
:feature:resize-convert --> :core:ui
:feature:resize-convert --> :core:domain
:feature:resize-convert --> :core:resources
:feature:resize-convert --> :core:settings
:feature:resize-convert --> :core:di
:feature:resize-convert --> :core:crash
:feature:resize-convert --> :feature:compare
:feature:easter-egg --> :core:data
:feature:easter-egg --> :core:ui
:feature:easter-egg --> :core:domain
:feature:easter-egg --> :core:resources
:feature:easter-egg --> :core:settings
:feature:easter-egg --> :core:di
:feature:easter-egg --> :core:crash
:feature:webp-tools --> :core:data
:feature:webp-tools --> :core:ui
:feature:webp-tools --> :core:domain
:feature:webp-tools --> :core:resources
:feature:webp-tools --> :core:settings
:feature:webp-tools --> :core:di
:feature:webp-tools --> :core:crash
:feature:markup-layers --> :core:data
:feature:markup-layers --> :core:ui
:feature:markup-layers --> :core:domain
:feature:markup-layers --> :core:resources
:feature:markup-layers --> :core:settings
:feature:markup-layers --> :core:di
:feature:markup-layers --> :core:crash
:feature:media-picker --> :core:data
:feature:media-picker --> :core:ui
:feature:media-picker --> :core:domain
:feature:media-picker --> :core:resources
:feature:media-picker --> :core:settings
:feature:media-picker --> :core:di
:feature:media-picker --> :core:crash
:feature:image-stitch --> :core:data
:feature:image-stitch --> :core:ui
:feature:image-stitch --> :core:domain
:feature:image-stitch --> :core:resources
:feature:image-stitch --> :core:settings
:feature:image-stitch --> :core:di
:feature:image-stitch --> :core:crash
:feature:image-stitch --> :core:filters
:feature:image-stitch --> :lib:opencv-tools
:core:ui --> :core:resources
:core:ui --> :core:domain
:core:ui --> :core:utils
:core:ui --> :lib:dynamic-theme
:core:ui --> :lib:snowfall
:core:ui --> :core:di
:core:ui --> :core:settings
:core:ui --> :lib:documentscanner
:feature:color-library --> :core:data
:feature:color-library --> :core:ui
:feature:color-library --> :core:domain
:feature:color-library --> :core:resources
:feature:color-library --> :core:settings
:feature:color-library --> :core:di
:feature:color-library --> :core:crash
:feature:noise-generation --> :core:data
:feature:noise-generation --> :core:ui
:feature:noise-generation --> :core:domain
:feature:noise-generation --> :core:resources
:feature:noise-generation --> :core:settings
:feature:noise-generation --> :core:di
:feature:noise-generation --> :core:crash
:feature:wallpapers-export --> :core:data
:feature:wallpapers-export --> :core:ui
:feature:wallpapers-export --> :core:domain
:feature:wallpapers-export --> :core:resources
:feature:wallpapers-export --> :core:settings
:feature:wallpapers-export --> :core:di
:feature:wallpapers-export --> :core:crash
:feature:document-scanner --> :core:data
:feature:document-scanner --> :core:ui
:feature:document-scanner --> :core:domain
:feature:document-scanner --> :core:resources
:feature:document-scanner --> :core:settings
:feature:document-scanner --> :core:di
:feature:document-scanner --> :core:crash
:feature:document-scanner --> :feature:pdf-tools
:feature:gradient-maker --> :core:data
:feature:gradient-maker --> :core:ui
:feature:gradient-maker --> :core:domain
:feature:gradient-maker --> :core:resources
:feature:gradient-maker --> :core:settings
:feature:gradient-maker --> :core:di
:feature:gradient-maker --> :core:crash
:feature:gradient-maker --> :feature:compare
:feature:zip --> :core:data
:feature:zip --> :core:ui
:feature:zip --> :core:domain
:feature:zip --> :core:resources
:feature:zip --> :core:settings
:feature:zip --> :core:di
:feature:zip --> :core:crash
:core:utils --> :core:domain
:core:utils --> :core:resources
:core:utils --> :core:settings
:feature:cipher --> :core:data
:feature:cipher --> :core:ui
:feature:cipher --> :core:domain
:feature:cipher --> :core:resources
:feature:cipher --> :core:settings
:feature:cipher --> :core:di
:feature:cipher --> :core:crash
:feature:draw --> :core:data
:feature:draw --> :core:ui
:feature:draw --> :core:domain
:feature:draw --> :core:resources
:feature:draw --> :core:settings
:feature:draw --> :core:di
:feature:draw --> :core:crash
:feature:draw --> :core:filters
:feature:draw --> :feature:pick-color
:feature:ai-tools --> :core:data
:feature:ai-tools --> :core:ui
:feature:ai-tools --> :core:domain
:feature:ai-tools --> :core:resources
:feature:ai-tools --> :core:settings
:feature:ai-tools --> :core:di
:feature:ai-tools --> :core:crash
:feature:ai-tools --> :lib:neural-tools
:feature:audio-cover-extractor --> :core:data
:feature:audio-cover-extractor --> :core:ui
:feature:audio-cover-extractor --> :core:domain
:feature:audio-cover-extractor --> :core:resources
:feature:audio-cover-extractor --> :core:settings
:feature:audio-cover-extractor --> :core:di
:feature:audio-cover-extractor --> :core:crash
:core:crash --> :core:ui
:core:crash --> :core:settings
:lib:documentscanner --> :lib:opencv-tools
:feature:delete-exif --> :core:data
:feature:delete-exif --> :core:ui
:feature:delete-exif --> :core:domain
:feature:delete-exif --> :core:resources
:feature:delete-exif --> :core:settings
:feature:delete-exif --> :core:di
:feature:delete-exif --> :core:crash
:feature:collage-maker --> :core:data
:feature:collage-maker --> :core:ui
:feature:collage-maker --> :core:domain
:feature:collage-maker --> :core:resources
:feature:collage-maker --> :core:settings
:feature:collage-maker --> :core:di
:feature:collage-maker --> :core:crash
:feature:collage-maker --> :lib:collages
:feature:compare --> :core:data
:feature:compare --> :core:ui
:feature:compare --> :core:domain
:feature:compare --> :core:resources
:feature:compare --> :core:settings
:feature:compare --> :core:di
:feature:compare --> :core:crash
:feature:compare --> :lib:opencv-tools
:feature:mesh-gradients --> :core:data
:feature:mesh-gradients --> :core:ui
:feature:mesh-gradients --> :core:domain
:feature:mesh-gradients --> :core:resources
:feature:mesh-gradients --> :core:settings
:feature:mesh-gradients --> :core:di
:feature:mesh-gradients --> :core:crash
:core:settings --> :lib:dynamic-theme
:core:settings --> :core:domain
:core:settings --> :core:resources
:core:settings --> :core:di
:feature:scan-qr-code --> :core:data
:feature:scan-qr-code --> :core:ui
:feature:scan-qr-code --> :core:domain
:feature:scan-qr-code --> :core:resources
:feature:scan-qr-code --> :core:settings
:feature:scan-qr-code --> :core:di
:feature:scan-qr-code --> :core:crash
:feature:scan-qr-code --> :core:filters
:feature:svg-maker --> :core:data
:feature:svg-maker --> :core:ui
:feature:svg-maker --> :core:domain
:feature:svg-maker --> :core:resources
:feature:svg-maker --> :core:settings
:feature:svg-maker --> :core:di
:feature:svg-maker --> :core:crash
:feature:weight-resize --> :core:data
:feature:weight-resize --> :core:ui
:feature:weight-resize --> :core:domain
:feature:weight-resize --> :core:resources
:feature:weight-resize --> :core:settings
:feature:weight-resize --> :core:di
:feature:weight-resize --> :core:crash
:feature:image-splitting --> :core:data
:feature:image-splitting --> :core:ui
:feature:image-splitting --> :core:domain
:feature:image-splitting --> :core:resources
:feature:image-splitting --> :core:settings
:feature:image-splitting --> :core:di
:feature:image-splitting --> :core:crash
:benchmark --> :app
:feature:checksum-tools --> :core:data
:feature:checksum-tools --> :core:ui
:feature:checksum-tools --> :core:domain
:feature:checksum-tools --> :core:resources
:feature:checksum-tools --> :core:settings
:feature:checksum-tools --> :core:di
:feature:checksum-tools --> :core:crash
:feature:base64-tools --> :core:data
:feature:base64-tools --> :core:ui
:feature:base64-tools --> :core:domain
:feature:base64-tools --> :core:resources
:feature:base64-tools --> :core:settings
:feature:base64-tools --> :core:di
:feature:base64-tools --> :core:crash
:feature:palette-tools --> :core:data
:feature:palette-tools --> :core:ui
:feature:palette-tools --> :core:domain
:feature:palette-tools --> :core:resources
:feature:palette-tools --> :core:settings
:feature:palette-tools --> :core:di
:feature:palette-tools --> :core:crash
:feature:palette-tools --> :feature:pick-color
:feature:palette-tools --> :lib:palette
:feature:settings --> :core:data
:feature:settings --> :core:ui
:feature:settings --> :core:domain
:feature:settings --> :core:resources
:feature:settings --> :core:settings
:feature:settings --> :core:di
:feature:settings --> :core:crash
:core:data --> :core:utils
:core:data --> :core:domain
:core:data --> :core:resources
:core:data --> :core:filters
:core:data --> :core:settings
:core:data --> :core:di
:feature:pick-color --> :core:data
:feature:pick-color --> :core:ui
:feature:pick-color --> :core:domain
:feature:pick-color --> :core:resources
:feature:pick-color --> :core:settings
:feature:pick-color --> :core:di
:feature:pick-color --> :core:crash
:feature:load-net-image --> :core:data
:feature:load-net-image --> :core:ui
:feature:load-net-image --> :core:domain
:feature:load-net-image --> :core:resources
:feature:load-net-image --> :core:settings
:feature:load-net-image --> :core:di
:feature:load-net-image --> :core:crash
:feature:quick-tiles --> :core:data
:feature:quick-tiles --> :core:ui
:feature:quick-tiles --> :core:domain
:feature:quick-tiles --> :core:resources
:feature:quick-tiles --> :core:settings
:feature:quick-tiles --> :core:di
:feature:quick-tiles --> :core:crash
:feature:quick-tiles --> :feature:erase-background
:feature:recognize-text --> :core:data
:feature:recognize-text --> :core:ui
:feature:recognize-text --> :core:domain
:feature:recognize-text --> :core:resources
:feature:recognize-text --> :core:settings
:feature:recognize-text --> :core:di
:feature:recognize-text --> :core:crash
:feature:recognize-text --> :core:filters
:feature:recognize-text --> :feature:single-edit
:core:domain --> :core:resources
:feature:single-edit --> :core:data
:feature:single-edit --> :core:ui
:feature:single-edit --> :core:domain
:feature:single-edit --> :core:resources
:feature:single-edit --> :core:settings
:feature:single-edit --> :core:di
:feature:single-edit --> :core:crash
:feature:single-edit --> :feature:crop
:feature:single-edit --> :feature:erase-background
:feature:single-edit --> :feature:draw
:feature:single-edit --> :feature:filters
:feature:single-edit --> :feature:pick-color
:feature:single-edit --> :feature:compare
:feature:single-edit --> :lib:curves
:feature:image-cutting --> :core:data
:feature:image-cutting --> :core:ui
:feature:image-cutting --> :core:domain
:feature:image-cutting --> :core:resources
:feature:image-cutting --> :core:settings
:feature:image-cutting --> :core:di
:feature:image-cutting --> :core:crash
:feature:image-cutting --> :feature:compare
:feature:crop --> :core:data
:feature:crop --> :core:ui
:feature:crop --> :core:domain
:feature:crop --> :core:resources
:feature:crop --> :core:settings
:feature:crop --> :core:di
:feature:crop --> :core:crash
:feature:crop --> :lib:opencv-tools
:feature:color-tools --> :core:data
:feature:color-tools --> :core:ui
:feature:color-tools --> :core:domain
:feature:color-tools --> :core:resources
:feature:color-tools --> :core:settings
:feature:color-tools --> :core:di
:feature:color-tools --> :core:crash
:feature:format-conversion --> :core:data
:feature:format-conversion --> :core:ui
:feature:format-conversion --> :core:domain
:feature:format-conversion --> :core:resources
:feature:format-conversion --> :core:settings
:feature:format-conversion --> :core:di
:feature:format-conversion --> :core:crash
:feature:format-conversion --> :feature:compare
:feature:ascii-art --> :core:data
:feature:ascii-art --> :core:ui
:feature:ascii-art --> :core:domain
:feature:ascii-art --> :core:resources
:feature:ascii-art --> :core:settings
:feature:ascii-art --> :core:di
:feature:ascii-art --> :core:crash
:feature:ascii-art --> :feature:filters
:feature:ascii-art --> :lib:ascii
:core:filters --> :core:domain
:core:filters --> :core:ui
:core:filters --> :core:resources
:core:filters --> :core:settings
:core:filters --> :core:utils
:core:filters --> :lib:curves
:core:filters --> :lib:ascii
:core:filters --> :lib:neural-tools
:feature:apng-tools --> :core:data
:feature:apng-tools --> :core:ui
:feature:apng-tools --> :core:domain
:feature:apng-tools --> :core:resources
:feature:apng-tools --> :core:settings
:feature:apng-tools --> :core:di
:feature:apng-tools --> :core:crash
:feature:image-preview --> :core:data
:feature:image-preview --> :core:ui
:feature:image-preview --> :core:domain
:feature:image-preview --> :core:resources
:feature:image-preview --> :core:settings
:feature:image-preview --> :core:di
:feature:image-preview --> :core:crash
:feature:filters --> :core:filters
:feature:filters --> :core:data
:feature:filters --> :core:ui
:feature:filters --> :core:domain
:feature:filters --> :core:resources
:feature:filters --> :core:settings
:feature:filters --> :core:di
:feature:filters --> :core:crash
:feature:filters --> :core:ksp
:feature:filters --> :feature:draw
:feature:filters --> :feature:pick-color
:feature:filters --> :feature:compare
:feature:filters --> :lib:opencv-tools
:feature:filters --> :lib:neural-tools
:feature:filters --> :lib:curves
:feature:filters --> :lib:ascii
:feature:image-stacking --> :core:data
:feature:image-stacking --> :core:ui
:feature:image-stacking --> :core:domain
:feature:image-stacking --> :core:resources
:feature:image-stacking --> :core:settings
:feature:image-stacking --> :core:di
:feature:image-stacking --> :core:crash
:feature:main --> :core:data
:feature:main --> :core:ui
:feature:main --> :core:domain
:feature:main --> :core:resources
:feature:main --> :core:settings
:feature:main --> :core:di
:feature:main --> :core:crash
:feature:main --> :feature:settings