forked from Jonathan-Mckenzie/xcode-rust-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxcode-rust-example.git@d2924da.html
More file actions
6804 lines (6130 loc) · 356 KB
/
Copy pathxcode-rust-example.git@d2924da.html
File metadata and controls
6804 lines (6130 loc) · 356 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
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body { font-family: sans-serif; display: grid; grid-template-columns: 250px 1fr; margin: 0; }
nav { border-right: 1px solid #ccc; height: 100vh; overflow-y: auto; padding: 10px; position: sticky; top: 0; background: #f9f9f9; }
main { padding: 20px; }
textarea { width: 100%; height: 500px; }
.view-btn { padding: 10px; cursor: pointer; }
</style>
<script>
function show(id) {
document.getElementById('human').style.display = id === 'h' ? 'block' : 'none';
document.getElementById('llm').style.display = id === 'l' ? 'block' : 'none';
}
</script>
</head>
<body>
<nav>
<strong>Files</strong>
<ul style="padding-left:15px; font-size:12px;"><li><a href='#f-0'>.github/workflows/rust.yml</a></li><li><a href='#f-1'>.gitignore</a></li><li><a href='#f-2'>.swiftformat</a></li><li><a href='#f-3'>Makefile</a></li><li><a href='#f-4'>README.md</a></li><li><a href='#f-5'>assets/xcode-rust-example-screenshot.jpg</a></li><li><a href='#f-6'>build.sh</a></li><li><a href='#f-7'>rustylib/Cargo.lock</a></li><li><a href='#f-8'>rustylib/Cargo.toml</a></li><li><a href='#f-9'>rustylib/src/lib.rs</a></li><li><a href='#f-10'>rustylib/src/rustylib.swift</a></li><li><a href='#f-11'>rustylib/src/rustylibFFI.h</a></li><li><a href='#f-12'>rustylib/src/rustylibFFI.modulemap</a></li><li><a href='#f-13'>rustylib/uniffi-bindgen.rs</a></li><li><a href='#f-14'>swiftyapp/Lib/swiftyrustlib/Package.swift</a></li><li><a href='#f-15'>swiftyapp/Lib/swiftyrustlib/Sources/RustyLib/RustyLib.swift</a></li><li><a href='#f-16'>swiftyapp/swiftyapp/Assets.xcassets/AccentColor.colorset/Contents.json</a></li><li><a href='#f-17'>swiftyapp/swiftyapp/Assets.xcassets/AppIcon.appiconset/Contents.json</a></li><li><a href='#f-18'>swiftyapp/swiftyapp/Assets.xcassets/Contents.json</a></li><li><a href='#f-19'>swiftyapp/swiftyapp/ContentView.swift</a></li><li><a href='#f-20'>swiftyapp/swiftyapp/Preview Content/Preview Assets.xcassets/Contents.json</a></li><li><a href='#f-21'>swiftyapp/swiftyapp/swiftyappApp.swift</a></li><li><a href='#f-22'>swiftyapp/swiftyapp.xcodeproj/project.pbxproj</a></li><li><a href='#f-23'>swiftyapp/swiftyapp.xcodeproj/project.xcworkspace/contents.xcworkspacedata</a></li><li><a href='#f-24'>swiftyapp/swiftyapp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist</a></li></ul>
</nav>
<main>
<h1>Repo: https://github.com/RandyMcMillan/xcode-rust-example.git</h1>
<button class="view-btn" onclick="show('h')">👤 Human View</button>
<button class="view-btn" onclick="show('l')">🤖 LLM View</button>
<div id="human"><section id='f-0' style='border-top:1px solid #eee; margin-top:20px;'><h3>.github/workflows/rust.yml</h3><pre style='background:#f6f8fa; padding:10px; border-radius:5px;'><code>name: CI
on:
push:
branches: [ main ]
pull_request:
env:
CARGO_TERM_COLOR: always
defaults:
run:
shell: bash
jobs:
build-test:
strategy:
fail-fast: false
matrix:
include:
<span style=\"color: #6a737d; font-style: italic;\"># Windows
</span> - os: windows-latest
target: x86_64-pc-windows-msvc
<span style=\"color: #6a737d; font-style: italic;\"># Linux
</span> - os: ubuntu-latest
target: x86_64-unknown-linux-gnu
<span style=\"color: #6a737d; font-style: italic;\"># Apple Silicon (arm64)
</span> - os: macos-latest
target: aarch64-apple-darwin
<span style=\"color: #6a737d; font-style: italic;\"># Apple Silicon (arm64)
</span> - os: macos-14
target: aarch64-apple-darwin
<span style=\"color: #6a737d; font-style: italic;\"># Apple Silicon (arm64)
</span> - os: macos-15
target: aarch64-apple-darwin
<span style=\"color: #6a737d; font-style: italic;\"># Apple Silicon (arm64)
</span> - os: macos-26
target: aarch64-apple-darwin
<span style=\"color: #6a737d; font-style: italic;\"># Intel-based macOS (x86_64)
</span> - os: macos-26-intel
target: x86_64-apple-darwin
<span style=\"color: #6a737d; font-style: italic;\"># Intel-based macOS (x86_64)
</span> - os: macos-15-intel
target: x86_64-apple-darwin
name: Build & Test (${{ matrix.target }})
runs-on: ${{ matrix.os }}
env:
RA_TARGET: ${{ matrix.target }}
steps:
- uses: actions/checkout@v4
<span style=\"color: #6a737d; font-style: italic;\"># Only runs on macOS runners (both Silicon and Intel)
</span> - name: macOS specific setup
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">if</span>: contains(matrix.os, <span style=\"color: #032f62;\">'macos'</span>)
</span> run: |
echo <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"Running on ${{ matrix.os }}"</span>
</span> ./build.sh && make
<span style=\"color: #6a737d; font-style: italic;\"># Add any additional macOS-specific environment setup here
</span>
- name: Build
run: |
cargo build --verbose \
--manifest-path ./rustylib/Cargo.toml \
--target ${{ matrix.target }}
- name: Run tests
run: |
cargo test --verbose \
--manifest-path ./rustylib/Cargo.toml \
--target ${{ matrix.target }}
</code></pre></section><section id='f-1' style='border-top:1px solid #eee; margin-top:20px;'><h3>.gitignore</h3><pre style='background:#f6f8fa; padding:10px; border-radius:5px;'><code>swiftyapp/Lib/swiftyrustlib/Sources/
.genkit
<span style=\"color: #6a737d; font-style: italic;\"># Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,rust,swift,xcode
</span><span style=\"color: #6a737d; font-style: italic;\"># Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,macos,rust,swift,xcode
</span>
<span style=\"color: #6a737d; font-style: italic;\">### macOS ###
</span><span style=\"color: #6a737d; font-style: italic;\"># General
</span>.DS_Store
.AppleDouble
.LSOverride
<span style=\"color: #6a737d; font-style: italic;\"># Icon must end with two \r
</span>Icon
<span style=\"color: #6a737d; font-style: italic;\"># Thumbnails
</span>._*
<span style=\"color: #6a737d; font-style: italic;\"># Files that might appear in the root of a volume
</span>.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
<span style=\"color: #6a737d; font-style: italic;\"># Directories potentially created on remote AFP share
</span>.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
<span style=\"color: #6a737d; font-style: italic;\">### macOS Patch ###
</span><span style=\"color: #6a737d; font-style: italic;\"># iCloud generated files
</span>*.icloud
<span style=\"color: #6a737d; font-style: italic;\">### Rust ###
</span><span style=\"color: #6a737d; font-style: italic;\"># Generated by Cargo
</span><span style=\"color: #6a737d; font-style: italic;\"># will have compiled files and executables
</span>debug/
target/
<span style=\"color: #6a737d; font-style: italic;\"># Remove Cargo.lock from gitignore <span style=\"color: #d73a49; font-weight: bold;\">if</span> creating an executable, leave it <span style=\"color: #d73a49; font-weight: bold;\">for</span> libraries
</span><span style=\"color: #6a737d; font-style: italic;\"># More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
</span><span style=\"color: #6a737d; font-style: italic;\"># Cargo.lock
</span>
<span style=\"color: #6a737d; font-style: italic;\"># These are backup files generated by rustfmt
</span>**/*.rs.bk
<span style=\"color: #6a737d; font-style: italic;\"># MSVC Windows builds of rustc generate these, which store debugging information
</span>*.pdb
<span style=\"color: #6a737d; font-style: italic;\">### Swift ###
</span><span style=\"color: #6a737d; font-style: italic;\"># Xcode
</span><span style=\"color: #6a737d; font-style: italic;\">#
</span><span style=\"color: #6a737d; font-style: italic;\"># gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
</span>
<span style=\"color: #6a737d; font-style: italic;\">## User settings
</span>xcuserdata/
<span style=\"color: #6a737d; font-style: italic;\">## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
</span>*.xcscmblueprint
*.xccheckout
<span style=\"color: #6a737d; font-style: italic;\">## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
</span>build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
<span style=\"color: #6a737d; font-style: italic;\">## Obj-C/Swift specific
</span>*.hmap
<span style=\"color: #6a737d; font-style: italic;\">## App packaging
</span>*.ipa
*.dSYM.zip
*.dSYM
<span style=\"color: #6a737d; font-style: italic;\">## Playgrounds
</span>timeline.xctimeline
playground.xcworkspace
<span style=\"color: #6a737d; font-style: italic;\"># Swift Package Manager
</span><span style=\"color: #6a737d; font-style: italic;\"># Add this line <span style=\"color: #d73a49; font-weight: bold;\">if</span> you want to avoid checking in source code from Swift Package Manager dependencies.
</span><span style=\"color: #6a737d; font-style: italic;\"># Packages/
</span><span style=\"color: #6a737d; font-style: italic;\"># Package.pins
</span><span style=\"color: #6a737d; font-style: italic;\"># Package.resolved
</span><span style=\"color: #6a737d; font-style: italic;\"># *.xcodeproj
</span><span style=\"color: #6a737d; font-style: italic;\"># Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
</span><span style=\"color: #6a737d; font-style: italic;\"># hence it is not needed unless you have added a package configuration file to your project
</span><span style=\"color: #6a737d; font-style: italic;\"># .swiftpm
</span>
.build/
<span style=\"color: #6a737d; font-style: italic;\"># CocoaPods
</span><span style=\"color: #6a737d; font-style: italic;\"># We recommend against adding the Pods directory to your .gitignore. However
</span><span style=\"color: #6a737d; font-style: italic;\"># you should judge <span style=\"color: #d73a49; font-weight: bold;\">for</span> yourself, the pros and cons are mentioned at:
</span><span style=\"color: #6a737d; font-style: italic;\"># https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
</span><span style=\"color: #6a737d; font-style: italic;\"># Pods/
</span><span style=\"color: #6a737d; font-style: italic;\"># Add this line <span style=\"color: #d73a49; font-weight: bold;\">if</span> you want to avoid checking in source code from the Xcode workspace
</span><span style=\"color: #6a737d; font-style: italic;\"># *.xcworkspace
</span>
<span style=\"color: #6a737d; font-style: italic;\"># Carthage
</span><span style=\"color: #6a737d; font-style: italic;\"># Add this line <span style=\"color: #d73a49; font-weight: bold;\">if</span> you want to avoid checking in source code from Carthage dependencies.
</span><span style=\"color: #6a737d; font-style: italic;\"># Carthage/Checkouts
</span>
Carthage/Build/
<span style=\"color: #6a737d; font-style: italic;\"># Accio dependency management
</span>Dependencies/
.accio/
<span style=\"color: #6a737d; font-style: italic;\"># fastlane
</span><span style=\"color: #6a737d; font-style: italic;\"># It is recommended to not store the screenshots in the git repo.
</span><span style=\"color: #6a737d; font-style: italic;\"># Instead, <span style=\"color: #d73a49; font-weight: bold;\">use</span> fastlane to re-generate the screenshots whenever they are needed.
</span><span style=\"color: #6a737d; font-style: italic;\"># For more information about the recommended setup visit:
</span><span style=\"color: #6a737d; font-style: italic;\"># https://docs.fastlane.tools/best-practices/source-control/#source-control
</span>
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output
<span style=\"color: #6a737d; font-style: italic;\"># Code Injection
</span><span style=\"color: #6a737d; font-style: italic;\"># After new code Injection tools there's a generated folder /iOSInjectionProject
</span><span style=\"color: #6a737d; font-style: italic;\"># https://github.com/johnno1962/injectionforxcode
</span>
iOSInjectionProject/
<span style=\"color: #6a737d; font-style: italic;\">### VisualStudioCode ###
</span>.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
<span style=\"color: #6a737d; font-style: italic;\"># Local History <span style=\"color: #d73a49; font-weight: bold;\">for</span> Visual Studio Code
</span>.history/
<span style=\"color: #6a737d; font-style: italic;\"># Built Visual Studio Code Extensions
</span>*.vsix
<span style=\"color: #6a737d; font-style: italic;\">### VisualStudioCode Patch ###
</span><span style=\"color: #6a737d; font-style: italic;\"># Ignore all local history of files
</span>.history
.ionide
<span style=\"color: #6a737d; font-style: italic;\">### Xcode ###
</span>
<span style=\"color: #6a737d; font-style: italic;\">## Xcode 8 and earlier
</span>
<span style=\"color: #6a737d; font-style: italic;\">### Xcode Patch ###
</span>*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcodeproj/project.xcworkspace/
!*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings
<span style=\"color: #6a737d; font-style: italic;\">### SwiftPackageManager ###
</span>Packages
.build/
xcuserdata
DerivedData/
*.xcodeproj
<span style=\"color: #6a737d; font-style: italic;\"># End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,rust,swift,xcode
</span>
out/
*.xcframework/
</code></pre></section><section id='f-2' style='border-top:1px solid #eee; margin-top:20px;'><h3>.swiftformat</h3><pre style='background:#f6f8fa; padding:10px; border-radius:5px;'><code>--exclude swiftyapp/Lib/swiftyrustlib/Sources/RustyLib/RustyLib.swift
</code></pre></section><section id='f-3' style='border-top:1px solid #eee; margin-top:20px;'><h3>Makefile</h3><pre style='background:#f6f8fa; padding:10px; border-radius:5px;'><code>SHELL := /bin/bash
PROJECT := swiftyapp/swiftyapp.xcodeproj
SCHEME := swiftyapp
BUILD_SCRIPT := ./build.sh
RUST_CRATE_DIR := rustylib
DERIVED_DATA ?= .build/xcode
CONFIGURATION ?= Debug
APP_NAME := swiftyapp.app
INSTALL_DIR ?= $(HOME)/Applications
SYMROOT := $(abspath $(DERIVED_DATA))
OBJROOT := $(SYMROOT)/Intermediates.noindex
HOST_ARCH := $(shell uname -m)
SIMULATOR_ARCH := $(<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">if</span> $(filter arm64,$(HOST_ARCH)),arm64,x86_64)
</span>IOS_DESTINATION ?= generic/platform=iOS Simulator
CATALYST_DESTINATION ?= generic/platform=macOS,variant=Mac Catalyst
CATALYST_APP_PATH := $(SYMROOT)/$(CONFIGURATION)-maccatalyst/$(APP_NAME)
.DEFAULT_GOAL := help
.PHONY: help rust resolve app catalyst install clean
help:
@printf <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">'%s\n'</span> \
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">'make rust - build the Rust library, bindings, and XCFramework'</span> \
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">'make resolve - resolve local Swift package dependencies'</span> \
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">'make app - build the iOS app <span style=\"color: #d73a49; font-weight: bold;\">for</span> a generic simulator destination'</span> \
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">'make catalyst - build the app <span style=\"color: #d73a49; font-weight: bold;\">for</span> Mac Catalyst'</span> \
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">'make install - install the Mac Catalyst app into ~/Applications'</span> \
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">'make clean - clean Rust and Xcode build artifacts'</span>
</span>
rust:
$(BUILD_SCRIPT)
resolve:
xcodebuild -resolvePackageDependencies -project <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(PROJECT)"</span> -scheme <span style=\"color: #032f62;\">"$(SCHEME)"</span>
</span>
app: rust resolve
xcodebuild \
-project <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(PROJECT)"</span> \
</span> -scheme <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(SCHEME)"</span> \
</span> -configuration <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(CONFIGURATION)"</span> \
</span> -derivedDataPath <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(DERIVED_DATA)"</span> \
</span> SYMROOT=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(SYMROOT)"</span> \
</span> OBJROOT=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(OBJROOT)"</span> \
</span> -destination <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(IOS_DESTINATION)"</span> \
</span> ARCHS=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(SIMULATOR_ARCH)"</span> \
</span> ONLY_ACTIVE_ARCH=YES \
build
catalyst: rust resolve
xcodebuild \
-project <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(PROJECT)"</span> \
</span> -scheme <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(SCHEME)"</span> \
</span> -configuration <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(CONFIGURATION)"</span> \
</span> -derivedDataPath <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(DERIVED_DATA)"</span> \
</span> SYMROOT=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(SYMROOT)"</span> \
</span> OBJROOT=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(OBJROOT)"</span> \
</span> -destination <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(CATALYST_DESTINATION)"</span> \
</span> ARCHS=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(HOST_ARCH)"</span> \
</span> ONLY_ACTIVE_ARCH=YES \
build
install: catalyst
mkdir -p <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(INSTALL_DIR)"</span>
</span> rm -rf <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(INSTALL_DIR)/$(APP_NAME)"</span>
</span> cp -R <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(CATALYST_APP_PATH)"</span> <span style=\"color: #032f62;\">"$(INSTALL_DIR)/$(APP_NAME)"</span>
</span>
clean:
cd <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(RUST_CRATE_DIR)"</span> && cargo clean
</span> rm -rf <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(DERIVED_DATA)"</span></span></code></pre></section><section id='f-4' style='border-top:1px solid #eee; margin-top:20px;'><h3>README.md</h3><pre style='background:#f6f8fa; padding:10px; border-radius:5px;'><code><span style=\"color: #6a737d; font-style: italic;\"># xcode-rust-example
</span>

Demonstrates the ability to generate the necessary bindings <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">for</span> a rust lib compiled <span style=\"color: #d73a49; font-weight: bold;\">for</span> an apple target to be embedded and called by a Swift project in Xcode.
</span>
<span style=\"color: #6a737d; font-style: italic;\">## pre-reqs
</span>1. [cargo](https:<span style=\"color: #6a737d; font-style: italic;\">//rustup.rs/)
</span>1. xcode from [Apple app store](https:<span style=\"color: #6a737d; font-style: italic;\">//apps.apple.com/us/app/xcode/id497799835)
</span>
<span style=\"color: #6a737d; font-style: italic;\">## Setup
</span>
`rustylib` rust library with two exposed functions
`swiftyapp` hello world ios app that imports and uses the two rust lib functions
`swiftyrustlib` Swift package of rust lib
1. Run `make rust` (or `./build.sh`).
1. Open the Xcode project located at `swiftyapp/swiftyapp.xcodeproj`.
1. Ensure that RustyLib was successfully imported into project.
1. Build and run the project in Xcode.
1. For Intel Macs, enable and choose the **Mac Catalyst** destination in Xcode.
1. On Apple Silicon Macs, you can also choose **My Mac (Designed <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">for</span> iPad)** in Xcode.
</span>1. Verify that the Rust library functions are successfully called from the Swift project.
<span style=\"color: #6a737d; font-style: italic;\">## Make targets
</span>
- `make rust` builds the Rust static libraries, Swift bindings, and `RustyCore.xcframework`.
- `make resolve` refreshes the local Swift package reference in Xcode.
- `make app` builds the app <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">for</span> a generic iOS Simulator destination.
</span>- `make catalyst` builds the app <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">for</span> Mac Catalyst.
</span>- `make clean` removes Rust and Xcode derived build artifacts.
<span style=\"color: #6a737d; font-style: italic;\">### Referenced Articles:
</span>- https:<span style=\"color: #6a737d; font-style: italic;\">//boehs.org/node/uniffi
</span>- https:<span style=\"color: #6a737d; font-style: italic;\">//forgen.tech/en/blog/post/building-an-ios-app-with-rust-using-uniffi
</span>- https:<span style=\"color: #6a737d; font-style: italic;\">//krirogn.dev/blog/integrate-rust-in-ios#make-the-library
</span></code></pre></section><section id='f-5' style='border-top:1px solid #eee; margin-top:20px;'><h3>assets/xcode-rust-example-screenshot.jpg</h3><p style="color:red;">Skipped: Binary or too large (Size: 68624 bytes).</p></section><section id='f-6' style='border-top:1px solid #eee; margin-top:20px;'><h3>build.sh</h3><pre style='background:#f6f8fa; padding:10px; border-radius:5px;'><code>set -euo pipefail
<span style=\"color: #6a737d; font-style: italic;\"># Xcode runs build phases in a non-login shell, so Cargo/Rustup may not be on PATH.
</span><span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">export</span> PATH=<span style=\"color: #032f62;\">"$HOME/.cargo/bin:/opt/homebrew/bin:/usr/local/bin:${PATH:-/usr/bin:/bin:/usr/sbin:/sbin}"</span>
</span><span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">if</span> [ -f <span style=\"color: #032f62;\">"$HOME/.cargo/env"</span> ]; then
</span> <span style=\"color: #6a737d; font-style: italic;\"># shellcheck disable=SC1090
</span> . <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$HOME/.cargo/env"</span>
</span>fi
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">if</span> ! command -v cargo >/dev/null 2>&1; then
</span> echo <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"cargo not found; install Rust or add cargo to PATH"</span> >&2
</span> exit 127
fi
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">if</span> ! command -v rustup >/dev/null 2>&1; then
</span> echo <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"rustup not found; install Rust or add rustup to PATH"</span> >&2
</span> exit 127
fi
MY_CRATE=rustylib
SWIFT_APP=swiftyapp
SWIFT_PROJECT=swiftyrustlib
SWIFT_PROJECT_NAME=RustyLib
SWIFT_CORE_NAME=RustyCore
cd $MY_CRATE
<span style=\"color: #6a737d; font-style: italic;\"># step 1 - compile rust library and generate bindings
</span>HEADERPATH=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"out/${MY_CRATE}FFI.h"</span>
</span>TARGETDIR=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(cargo metadata --no-deps --format-version 1 | tr -d '\n' | sed -n 's/.*"</span>target_directory<span style=\"color: #032f62;\">":"</span>\([^<span style=\"color: #032f62;\">"]*\)"</span>.*/\1/p')"
</span>TARGETDIR=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${TARGETDIR:-target}"</span>
</span>RELDIR=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"release"</span>
</span>STATIC_LIB_NAME=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"lib${MY_CRATE}.a"</span>
</span>NEW_HEADER_DIR=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"out/include"</span>
</span>XCFRAMEWORK_PATH=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${MY_CRATE}_framework.xcframework"</span>
</span>
DEVICE_TARGET=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"aarch64-apple-ios"</span>
</span>
case <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"$(uname -m)"</span> in
</span> arm64)
SIMULATOR_TARGET=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"aarch64-apple-ios-sim"</span>
</span> CATALYST_TARGET=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"aarch64-apple-ios-macabi"</span>
</span> ;;
x86_64)
SIMULATOR_TARGET=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"x86_64-apple-ios"</span>
</span> CATALYST_TARGET=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"x86_64-apple-ios-macabi"</span>
</span> ;;
*)
echo <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"Unsupported host architecture: $(uname -m)"</span> >&2
</span> exit 1
;;
esac
targets=(<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${DEVICE_TARGET}"</span> <span style=\"color: #032f62;\">"${SIMULATOR_TARGET}"</span> <span style=\"color: #032f62;\">"${CATALYST_TARGET}"</span>)
</span>
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#d73a49; font-weight: bold;\">for</span> target in <span style=\"color: #032f62;\">"${targets[@]}"</span>; do
</span> rustup target add ${target}
cargo build --target <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${target}"</span> --release -j8
</span> cargo run --bin uniffi-bindgen generate --library <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${TARGETDIR}/${target}/${RELDIR}/${STATIC_LIB_NAME}"</span> --language swift --out-dir out
</span> done
<span style=\"color: #6a737d; font-style: italic;\"># step 2 - create xcframework
</span>mkdir -p <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${NEW_HEADER_DIR}"</span>
</span>cp <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${HEADERPATH}"</span> <span style=\"color: #032f62;\">"${NEW_HEADER_DIR}/"</span>
</span>cp <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"out/${MY_CRATE}FFI.modulemap"</span> <span style=\"color: #032f62;\">"${NEW_HEADER_DIR}/module.modulemap"</span>
</span>
rm -rf <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${XCFRAMEWORK_PATH}"</span>
</span>
xcodebuild -create-xcframework \
-library <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${TARGETDIR}/${DEVICE_TARGET}/${RELDIR}/${STATIC_LIB_NAME}"</span> -headers <span style=\"color: #032f62;\">"${NEW_HEADER_DIR}"</span> \
</span> -library <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${TARGETDIR}/${SIMULATOR_TARGET}/${RELDIR}/${STATIC_LIB_NAME}"</span> -headers <span style=\"color: #032f62;\">"${NEW_HEADER_DIR}"</span> \
</span> -library <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${TARGETDIR}/${CATALYST_TARGET}/${RELDIR}/${STATIC_LIB_NAME}"</span> -headers <span style=\"color: #032f62;\">"${NEW_HEADER_DIR}"</span> \
</span> -output <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${XCFRAMEWORK_PATH}"</span>
</span>
rm -rf <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${NEW_HEADER_DIR}"</span>
</span>
cd ../
SWIFT_LIB_PATH=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"./${SWIFT_APP}/Lib/${SWIFT_PROJECT}"</span>
</span>SWIFT_ARTIFACTS_PATH=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${SWIFT_LIB_PATH}/artifacts"</span>
</span>SWIFT_SOURCES_PATH=<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${SWIFT_LIB_PATH}/Sources/${SWIFT_PROJECT_NAME}"</span>
</span>
<span style=\"color: #6a737d; font-style: italic;\"># step 3 - move to SwiftLib artifacts
</span>mkdir -p <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${SWIFT_ARTIFACTS_PATH}"</span>
</span>rm -rf <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${SWIFT_ARTIFACTS_PATH}/${SWIFT_CORE_NAME}.xcframework"</span>
</span>cp -R <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"./${MY_CRATE}/${XCFRAMEWORK_PATH}"</span> <span style=\"color: #032f62;\">"${SWIFT_ARTIFACTS_PATH}/${SWIFT_CORE_NAME}.xcframework"</span>
</span>
<span style=\"color: #6a737d; font-style: italic;\"># step 4 - move to SwiftLib Sources
</span>mkdir -p <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"${SWIFT_SOURCES_PATH}"</span>
</span>cp <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"./${MY_CRATE}/out/${MY_CRATE}.swift"</span> <span style=\"color: #032f62;\">"${SWIFT_SOURCES_PATH}/${SWIFT_PROJECT_NAME}.swift"</span>
</span></code></pre></section><section id='f-7' style='border-top:1px solid #eee; margin-top:20px;'><h3>rustylib/Cargo.lock</h3><pre style='background:#f6f8fa; padding:10px; border-radius:5px;'><code><span style=\"color: #6a737d; font-style: italic;\"># This file is automatically @generated by Cargo.
</span><span style=\"color: #6a737d; font-style: italic;\"># It is not intended <span style=\"color: #d73a49; font-weight: bold;\">for</span> manual editing.
</span>version = 3
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstream"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.6.14"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle-parse"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle-query"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle-wincon"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"colorchoice"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"is_terminal_polyfill"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"utf8parse"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.7"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle-parse"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.2.4"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"utf8parse"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle-query"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.1.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"windows-sys"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle-wincon"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"3.0.3"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"windows-sys"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anyhow"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.86"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"askama"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.12.1"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"askama_derive"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"askama_escape"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"askama_derive"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.12.5"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"askama_parser"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"basic-toml"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"mime"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"mime_guess"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"proc-macro2"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"quote"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"syn"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"askama_escape"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.10.3"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"askama_parser"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.2.1"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"nom"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"autocfg"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.3.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"basic-toml"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.1.9"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"bincode"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.3.3"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"bytes"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.6.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"camino"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.1.7"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"cargo-platform"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.1.8"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"cargo_metadata"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.15.4"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"camino"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"cargo-platform"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"semver"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde_json"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"thiserror"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"clap"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"4.5.9"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"clap_builder"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"clap_derive"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"clap_builder"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"4.5.9"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstream"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anstyle"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"clap_lex"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"strsim"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"clap_derive"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"4.5.8"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"heck"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"proc-macro2"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"quote"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"syn"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"clap_lex"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.7.1"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"colorchoice"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.1"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"fs-err"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"2.11.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"autocfg"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"glob"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.3.1"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"goblin"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.8.2"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"log"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"plain"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"scroll"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"heck"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.5.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"is_terminal_polyfill"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.70.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"itoa"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.11"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"log"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.4.22"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"memchr"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"2.7.4"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"mime"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.3.17"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"mime_guess"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"2.0.5"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"mime"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"unicase"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"minimal-lexical"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.2.1"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"nom"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"7.1.3"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"memchr"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"minimal-lexical"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"once_cell"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.19.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"paste"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.15"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"plain"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.2.3"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"proc-macro2"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.86"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"unicode-ident"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"quote"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.36"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"proc-macro2"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"rustylib"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.1.0"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"uniffi"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"ryu"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.18"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"scroll"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.12.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"scroll_derive"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"scroll_derive"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.12.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"7f81c2fde025af7e69b1d1420531c8a8811ca898919db177141a85313b1cb932"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"proc-macro2"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"quote"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"syn"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"semver"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.23"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.204"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde_derive"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde_derive"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.204"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"proc-macro2"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"quote"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"syn"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde_json"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.120"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"itoa"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"ryu"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"siphasher"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.3.11"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"smawk"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.3.2"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"static_assertions"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.1.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"strsim"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.11.1"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"syn"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"2.0.70"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"2f0209b68b3613b093e0ec905354eccaedcfe83b8cb37cbdeae64026c3064c16"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"proc-macro2"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"quote"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"unicode-ident"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"textwrap"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.16.1"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"smawk"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"thiserror"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.61"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"thiserror-<span style=\"color: #d73a49; font-weight: bold;\">impl</span>"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"thiserror-<span style=\"color: #d73a49; font-weight: bold;\">impl</span>"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.61"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"proc-macro2"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"quote"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"syn"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"toml"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.5.11"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"serde"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"unicase"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"2.7.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"version_check"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"unicode-ident"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"1.0.12"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"</span>
</span>
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"uniffi"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.28.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>
</span>checksum = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"f31bff6daf87277a9014bcdefbc2842b0553392919d1096843c5aad899ca4588"</span>
</span>dependencies = [
<span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"anyhow"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"camino"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"clap"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"uniffi_bindgen"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"uniffi_build"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"uniffi_core"</span>,
</span> <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"uniffi_macros"</span>,
</span>]
[[package]]
name = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"uniffi_bindgen"</span>
</span>version = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"0.28.0"</span>
</span>source = <span style=\"color: <span style=\"color: #6a737d; font-style: italic;\">#032f62;\">"registry+https://github.com/rust-lang/crates.io-index"</span>