blender_theme 0.1.5

Blender Theme Model
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
[[dependencies]]
name = "addr2line"
version = "0.21.0"
description = "A cross-platform symbolication library written in Rust, using `gimli`"
license = "Apache-2.0 OR MIT"
notices = ["Copyright (c) 2016-2018 The gimli Developers"]
repository = "https://github.com/gimli-rs/addr2line"

[[dependencies]]
name = "adler"
version = "1.0.2"
description = "A simple clean-room implementation of the Adler-32 checksum"
license = "0BSD OR MIT OR Apache-2.0"
notices = ["Copyright (C) Jonas Schievink <jonasschievink@gmail.com>"]
authors = ["Jonas Schievink <jonasschievink@gmail.com>"]
repository = "https://github.com/jonas-schievink/adler.git"

[[dependencies]]
name = "autocfg"
version = "1.4.0"
description = "Automatic cfg for Rust compiler features"
license = "Apache-2.0 OR MIT"
notices = ["Copyright (c) 2018 Josh Stone"]
authors = ["Josh Stone <cuviper@gmail.com>"]
repository = "https://github.com/cuviper/autocfg"

[[dependencies]]
name = "backtrace"
version = "0.3.71"
description = """
A library to acquire a stack trace (backtrace) at runtime in a Rust program.
"""
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2014 Alex Crichton"]
authors = ["The Rust Project Developers"]
repository = "https://github.com/rust-lang/backtrace-rs"

[[dependencies]]
name = "bitflags"
version = "2.9.0"
description = """
A macro to generate structures which behave like bitflags.
"""
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2014 The Rust Project Developers"]
authors = ["The Rust Project Developers"]
repository = "https://github.com/bitflags/bitflags"

[[dependencies]]
name = "byteorder"
version = "1.5.0"
description = "Library for reading/writing numbers in big-endian and little-endian."
license = "Unlicense OR MIT"
notices = ["Copyright (c) 2015 Andrew Gallant"]
authors = ["Andrew Gallant <jamslam@gmail.com>"]
repository = "https://github.com/BurntSushi/byteorder"

[[dependencies]]
name = "cc"
version = "1.2.20"
description = """
A build-time dependency for Cargo build scripts to assist in invoking the native
C compiler to compile native C code into a static archive to be linked into Rust
code.
"""
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2014 Alex Crichton"]
authors = ["Alex Crichton <alex@alexcrichton.com>"]
repository = "https://github.com/rust-lang/cc-rs"

[[dependencies]]
name = "cfg-if"
version = "1.0.0"
description = """
A macro to ergonomically define an item depending on a large number of #[cfg]
parameters. Structured like an if-else chain, the first matching branch is the
item that gets emitted.
"""
license = "MIT/Apache-2.0"
notices = ["Copyright (c) 2014 Alex Crichton"]
authors = ["Alex Crichton <alex@alexcrichton.com>"]
repository = "https://github.com/alexcrichton/cfg-if"

[[dependencies]]
name = "color-eyre"
version = "0.6.3"
description = "An error report handler for panics and eyre::Reports for colorful, consistent, and well formatted error reports for all kinds of errors."
license = "MIT OR Apache-2.0"
authors = ["Jane Lusby <jlusby@yaah.dev>"]
repository = "https://github.com/eyre-rs/eyre"

[[dependencies]]
name = "color-spantrace"
version = "0.2.1"
description = "A pretty printer for tracing_error::SpanTrace based on color-backtrace"
license = "MIT OR Apache-2.0"
authors = ["Jane Lusby <jlusby@yaah.dev>"]
repository = "https://github.com/eyre-rs/eyre"

[[dependencies]]
name = "const-hex"
version = "1.14.0"
description = "Fast byte array to hex string conversion"
license = "MIT OR Apache-2.0"
authors = ["DaniPopes <57450786+DaniPopes@users.noreply.github.com>"]
repository = "https://github.com/danipopes/const-hex"

[[dependencies]]
name = "cpufeatures"
version = "0.2.17"
description = """
Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, 
with no_std support and support for mobile targets including Android and iOS
"""
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2020-2025 The RustCrypto Project Developers"]
authors = ["RustCrypto Developers"]
repository = "https://github.com/RustCrypto/utils"

[[dependencies]]
name = "cssparser"
version = "0.34.0"
description = "Rust implementation of CSS Syntax Level 3"
license = "MPL-2.0"
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
repository = "https://github.com/servo/rust-cssparser"

[[dependencies]]
name = "cssparser-macros"
version = "0.6.1"
description = "Procedural macros for cssparser"
license = "MPL-2.0"
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
repository = "https://github.com/servo/rust-cssparser"

[[dependencies]]
name = "derive_more"
version = "0.99.20"
description = "Adds #[derive(x)] macros for more traits"
license = "MIT"
notices = ["Copyright (c) 2016 Jelte Fennema"]
authors = ["Jelte Fennema <github-tech@jeltef.nl>"]
repository = "https://github.com/JelteF/derive_more"

[[dependencies]]
name = "dtoa"
version = "1.0.10"
description = "Fast floating point primitive to string conversion"
license = "MIT OR Apache-2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/dtoa"

[[dependencies]]
name = "dtoa-short"
version = "0.3.5"
description = "Serialize float number and truncate to certain precision"
license = "MPL-2.0"
authors = ["Xidorn Quan <me@upsuper.org>"]
repository = "https://github.com/upsuper/dtoa-short"

[[dependencies]]
name = "equivalent"
version = "1.0.2"
description = "Traits for key comparison in maps."
license = "Apache-2.0 OR MIT"
notices = ["Copyright (c) 2016--2023"]
repository = "https://github.com/indexmap-rs/equivalent"

[[dependencies]]
name = "eyre"
version = "0.6.12"
description = "Flexible concrete Error Reporting type built on std::error::Error with customizable Reports"
license = "MIT OR Apache-2.0"
authors = [
  "David Tolnay <dtolnay@gmail.com>",
  "Jane Lusby <jlusby42@gmail.com>",
]
repository = "https://github.com/eyre-rs/eyre"

[[dependencies]]
name = "fxhash"
version = "0.2.1"
description = "A fast, non-secure, hashing algorithm derived from an internal hasher used in FireFox and Rustc."
license = "Apache-2.0/MIT"
authors = ["cbreeden <github@u.breeden.cc>"]
repository = "https://github.com/cbreeden/fxhash"

[[dependencies]]
name = "getrandom"
version = "0.2.16"
description = "A small cross-platform library for retrieving random data from system source"
license = "MIT OR Apache-2.0"
notices = [
  "Copyright (c) 2014 The Rust Project Developers",
  "Copyright (c) 2018-2024 The rust-random Project Developers",
]
authors = ["The Rand Project Developers"]
repository = "https://github.com/rust-random/getrandom"

[[dependencies]]
name = "gimli"
version = "0.28.1"
description = "A library for reading and writing the DWARF debugging format."
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2015 The Rust Project Developers"]
repository = "https://github.com/gimli-rs/gimli"

[[dependencies]]
name = "hashbrown"
version = "0.15.2"
description = "A Rust port of Google's SwissTable hash map"
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2016 Amanieu d'Antras"]
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
repository = "https://github.com/rust-lang/hashbrown"

[[dependencies]]
name = "hex"
version = "0.4.3"
description = "Encoding and decoding data into/from hexadecimal representation."
license = "MIT OR Apache-2.0"
notices = [
  "Copyright (c) 2013-2014 The Rust Project Developers.",
  "Copyright (c) 2015-2020 The rust-hex Developers",
]
authors = ["KokaKiwi <kokakiwi@kokakiwi.net>"]
repository = "https://github.com/KokaKiwi/rust-hex"

[[dependencies]]
name = "indenter"
version = "0.3.3"
description = """
A formatter wrapper that indents the text, designed for error display impls
"""
license = "MIT OR Apache-2.0"
authors = ["Jane Lusby <jlusby@yaah.dev>"]
repository = "https://github.com/yaahc/indenter"

[[dependencies]]
name = "indexmap"
version = "2.9.0"
description = "A hash table with consistent order and fast iteration."
license = "Apache-2.0 OR MIT"
notices = ["Copyright (c) 2016--2017"]
repository = "https://github.com/indexmap-rs/indexmap"

[[dependencies]]
name = "itoa"
version = "1.0.15"
description = "Fast integer primitive to string conversion"
license = "MIT OR Apache-2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/itoa"

[[dependencies]]
name = "lazy_static"
version = "1.5.0"
description = "A macro for declaring lazily evaluated statics in Rust."
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2010 The Rust Project Developers"]
authors = ["Marvin Löbel <loebel.marvin@gmail.com>"]
repository = "https://github.com/rust-lang-nursery/lazy-static.rs"

[[dependencies]]
name = "libc"
version = "0.2.172"
description = """
Raw FFI bindings to platform libraries like libc.
"""
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2014-2020 The Rust Project Developers"]
authors = ["The Rust Project Developers"]
repository = "https://github.com/rust-lang/libc"

[[dependencies]]
name = "log"
version = "0.4.27"
description = """
A lightweight logging facade for Rust
"""
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2014 The Rust Project Developers"]
authors = ["The Rust Project Developers"]
repository = "https://github.com/rust-lang/log"

[[dependencies]]
name = "matches"
version = "0.1.10"
description = "A macro to evaluate, as a boolean, whether an expression matches a pattern."
license = "MIT"
notices = ["Copyright (c) 2014-2016 Simon Sapin"]
repository = "https://github.com/SimonSapin/rust-std-candidates"

[[dependencies]]
name = "memchr"
version = "2.7.4"
description = """
Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for
1, 2 or 3 byte search and single substring search.
"""
license = "Unlicense OR MIT"
notices = ["Copyright (c) 2015 Andrew Gallant"]
authors = ["Andrew Gallant <jamslam@gmail.com>", "bluss"]
repository = "https://github.com/BurntSushi/memchr"

[[dependencies]]
name = "miniz_oxide"
version = "0.7.4"
description = "DEFLATE compression and decompression library rewritten in Rust based on miniz"
license = "MIT OR Zlib OR Apache-2.0"
notices = ["Copyright (c) 2017 Frommi", "Copyright (c) 2020 Frommi"]
authors = [
  "Frommi <daniil.liferenko@gmail.com>",
  "oyvindln <oyvindln@users.noreply.github.com>",
]
repository = "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide"

[[dependencies]]
name = "new_debug_unreachable"
version = "1.0.6"
description = "panic in debug, intrinsics::unreachable() in release (fork of debug_unreachable)"
license = "MIT"
notices = ["Copyright (c) 2015 Jonathan Reem"]
authors = [
  "Matt Brubeck <mbrubeck@limpet.net>",
  "Jonathan Reem <jonathan.reem@gmail.com>",
]
repository = "https://github.com/mbrubeck/rust-debug-unreachable"

[[dependencies]]
name = "num-traits"
version = "0.2.19"
description = "Numeric traits for generic mathematics"
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2014 The Rust Project Developers"]
authors = ["The Rust Project Developers"]
repository = "https://github.com/rust-num/num-traits"

[[dependencies]]
name = "object"
version = "0.32.2"
description = "A unified interface for reading and writing object file formats."
license = "Apache-2.0 OR MIT"
notices = ["Copyright (c) 2015 The Gimli Developers"]
repository = "https://github.com/gimli-rs/object"

[[dependencies]]
name = "once_cell"
version = "1.21.3"
description = "Single assignment cells and lazy values."
license = "MIT OR Apache-2.0"
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
repository = "https://github.com/matklad/once_cell"

[[dependencies]]
name = "owo-colors"
version = "3.5.0"
description = "Zero-allocation terminal colors that'll make people go owo"
license = "MIT"
notices = ["Copyright (c) 2020 - present The owo-colors Developers"]
authors = ["jam1garner <8260240+jam1garner@users.noreply.github.com>"]
repository = "https://github.com/jam1garner/owo-colors"

[[dependencies]]
name = "phf"
version = "0.11.3"
description = "Runtime support for perfect hash function data structures"
license = "MIT"
notices = ["Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi"]
authors = ["Steven Fackler <sfackler@gmail.com>"]
repository = "https://github.com/rust-phf/rust-phf"

[[dependencies]]
name = "phf_codegen"
version = "0.11.3"
description = "Codegen library for PHF types"
license = "MIT"
notices = ["Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi"]
authors = ["Steven Fackler <sfackler@gmail.com>"]
repository = "https://github.com/rust-phf/rust-phf"

[[dependencies]]
name = "phf_generator"
version = "0.11.3"
description = "PHF generation logic"
license = "MIT"
notices = ["Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi"]
authors = ["Steven Fackler <sfackler@gmail.com>"]
repository = "https://github.com/rust-phf/rust-phf"

[[dependencies]]
name = "phf_macros"
version = "0.11.3"
description = "Macros to generate types in the phf crate"
license = "MIT"
notices = ["Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi"]
authors = ["Steven Fackler <sfackler@gmail.com>"]
repository = "https://github.com/rust-phf/rust-phf"

[[dependencies]]
name = "phf_shared"
version = "0.11.3"
description = "Support code shared by PHF libraries"
license = "MIT"
notices = ["Copyright (c) 2014-2022 Steven Fackler, Yuki Okushi"]
authors = ["Steven Fackler <sfackler@gmail.com>"]
repository = "https://github.com/rust-phf/rust-phf"

[[dependencies]]
name = "pin-project-lite"
version = "0.2.16"
description = """
A lightweight version of pin-project written with declarative macros.
"""
license = "Apache-2.0 OR MIT"
repository = "https://github.com/taiki-e/pin-project-lite"

[[dependencies]]
name = "ppv-lite86"
version = "0.2.21"
description = "Cross-platform cryptography-oriented low-level SIMD library."
license = "MIT OR Apache-2.0"
notices = [
  "Copyright (c) 2019 The CryptoCorrosion Contributors",
  "Copyright 2019 The CryptoCorrosion Contributors",
]
authors = ["The CryptoCorrosion Contributors"]
repository = "https://github.com/cryptocorrosion/cryptocorrosion"

[[dependencies]]
name = "precomputed-hash"
version = "0.1.1"
description = "A library intending to be a base dependency to expose a precomputed hash"
license = "MIT"
notices = ["Copyright (c) 2017 Emilio Cobos Álvarez"]
authors = ["Emilio Cobos Álvarez <emilio@crisal.io>"]
repository = "https://github.com/emilio/precomputed-hash"

[[dependencies]]
name = "proc-macro2"
version = "1.0.95"
description = "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case."
license = "MIT OR Apache-2.0"
authors = [
  "David Tolnay <dtolnay@gmail.com>",
  "Alex Crichton <alex@alexcrichton.com>",
]
repository = "https://github.com/dtolnay/proc-macro2"

[[dependencies]]
name = "proptest"
version = "1.6.0"
description = """
Hypothesis-like property-based testing and shrinking.
"""
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2016 FullContact, Inc"]
authors = ["Jason Lingle"]
repository = "https://github.com/proptest-rs/proptest"
homepage = "https://proptest-rs.github.io/proptest/proptest/index.html"

[[dependencies]]
name = "qname"
version = "0.2.0"
description = "Type for qualified names in XML"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/xmlem/qname"

[[dependencies]]
name = "qname-impl"
version = "0.2.0"
description = "Type for qualified names in XML - implementation"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/xmlem/qname"

[[dependencies]]
name = "qname-macro"
version = "0.2.0"
description = "Type for qualified names in XML - macro"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/xmlem/qname"

[[dependencies]]
name = "quick-xml"
version = "0.37.4"
description = "High performance xml reader and writer"
license = "MIT"
notices = ["Copyright (c) 2016 Johann Tuffe"]
repository = "https://github.com/tafia/quick-xml"

[[dependencies]]
name = "quote"
version = "1.0.40"
description = "Quasi-quoting macro quote!(...)"
license = "MIT OR Apache-2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/quote"

[[dependencies]]
name = "rand"
version = "0.8.5"
description = """
Random number generators and other randomness functionality.
"""
license = "MIT OR Apache-2.0"
notices = [
  "Copyright (c) 2014 The Rust Project Developers",
  "Copyright 2018 Developers of the Rand project",
]
authors = ["The Rand Project Developers", "The Rust Project Developers"]
repository = "https://github.com/rust-random/rand"
homepage = "https://rust-random.github.io/book"

[[dependencies]]
name = "rand_chacha"
version = "0.3.1"
description = """
ChaCha random number generator
"""
license = "MIT OR Apache-2.0"
notices = [
  "Copyright (c) 2014 The Rust Project Developers",
  "Copyright 2018 Developers of the Rand project",
]
authors = [
  "The Rand Project Developers",
  "The Rust Project Developers",
  "The CryptoCorrosion Contributors",
]
repository = "https://github.com/rust-random/rand"
homepage = "https://rust-random.github.io/book"

[[dependencies]]
name = "rand_core"
version = "0.6.4"
description = """
Core random number generator traits and tools for implementation.
"""
license = "MIT OR Apache-2.0"
notices = [
  "Copyright (c) 2014 The Rust Project Developers",
  "Copyright 2018 Developers of the Rand project",
]
authors = ["The Rand Project Developers", "The Rust Project Developers"]
repository = "https://github.com/rust-random/rand"
homepage = "https://rust-random.github.io/book"

[[dependencies]]
name = "rand_xorshift"
version = "0.3.0"
description = """
Xorshift random number generator
"""
license = "MIT OR Apache-2.0"
notices = [
  "Copyright (c) 2014 The Rust Project Developers",
  "Copyright 2018 Developers of the Rand project",
]
authors = ["The Rand Project Developers", "The Rust Project Developers"]
repository = "https://github.com/rust-random/rngs"
homepage = "https://rust-random.github.io/book"

[[dependencies]]
name = "regex-syntax"
version = "0.8.5"
description = "A regular expression parser."
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2014 The Rust Project Developers"]
authors = ["The Rust Project Developers", "Andrew Gallant <jamslam@gmail.com>"]
repository = "https://github.com/rust-lang/regex/tree/master/regex-syntax"

[[dependencies]]
name = "rustc-demangle"
version = "0.1.24"
description = """
Rust compiler symbol demangling.
"""
license = "MIT/Apache-2.0"
notices = ["Copyright (c) 2014 Alex Crichton"]
authors = ["Alex Crichton <alex@alexcrichton.com>"]
repository = "https://github.com/rust-lang/rustc-demangle"

[[dependencies]]
name = "selectors"
version = "0.26.0"
description = "CSS Selectors matching for Rust"
license = "MPL-2.0"
authors = ["The Servo Project Developers"]
repository = "https://github.com/servo/stylo"

[[dependencies]]
name = "serde"
version = "1.0.219"
description = "A generic serialization/deserialization framework"
license = "MIT OR Apache-2.0"
authors = [
  "Erick Tryzelaar <erick.tryzelaar@gmail.com>",
  "David Tolnay <dtolnay@gmail.com>",
]
repository = "https://github.com/serde-rs/serde"
homepage = "https://serde.rs"

[[dependencies]]
name = "serde_derive"
version = "1.0.219"
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
license = "MIT OR Apache-2.0"
authors = [
  "Erick Tryzelaar <erick.tryzelaar@gmail.com>",
  "David Tolnay <dtolnay@gmail.com>",
]
repository = "https://github.com/serde-rs/serde"
homepage = "https://serde.rs"

[[dependencies]]
name = "serde_path_to_error"
version = "0.1.17"
description = "Path to the element that failed to deserialize"
license = "MIT OR Apache-2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/path-to-error"

[[dependencies]]
name = "servo_arc"
version = "0.4.0"
description = "A fork of std::sync::Arc with some extra functionality and without weak references"
license = "MIT OR Apache-2.0"
authors = ["The Servo Project Developers"]
repository = "https://github.com/servo/stylo"

[[dependencies]]
name = "sharded-slab"
version = "0.1.7"
description = """
A lock-free concurrent slab.
"""
license = "MIT"
notices = ["Copyright (c) 2019 Eliza Weisman"]
authors = ["Eliza Weisman <eliza@buoyant.io>"]
repository = "https://github.com/hawkw/sharded-slab"

[[dependencies]]
name = "shlex"
version = "1.3.0"
description = "Split a string into shell words, like Python's shlex."
license = "MIT OR Apache-2.0"
notices = [
  "Copyright (c) 2015 Nicholas Allegra (comex).",
  "Copyright 2015 Nicholas Allegra (comex).",
]
authors = [
  "comex <comexk@gmail.com>",
  "Fenhl <fenhl@fenhl.net>",
  "Adrian Taylor <adetaylor@chromium.org>",
  "Alex Touchet <alextouchet@outlook.com>",
  "Daniel Parks <dp+git@oxidized.org>",
  "Garrett Berg <googberg@gmail.com>",
]
repository = "https://github.com/comex/rust-shlex"

[[dependencies]]
name = "siphasher"
version = "1.0.1"
description = "SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust"
license = "MIT/Apache-2.0"
notices = [
  "Copyright 2012-2016 The Rust Project Developers.",
  "Copyright 2016-2024 Frank Denis.",
]
authors = ["Frank Denis <github@pureftpd.org>"]
repository = "https://github.com/jedisct1/rust-siphash"
homepage = "https://docs.rs/siphasher"

[[dependencies]]
name = "slotmap"
version = "1.0.7"
description = "Slotmap data structure"
license = "Zlib"
notices = ["Copyright (c) 2021 Orson Peters <orsonpeters@gmail.com>"]
authors = ["Orson Peters <orsonpeters@gmail.com>"]
repository = "https://github.com/orlp/slotmap"

[[dependencies]]
name = "smallvec"
version = "1.15.0"
description = "'Small vector' optimization: store up to a small number of items on the stack"
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2018 The Servo Project Developers"]
authors = ["The Servo Project Developers"]
repository = "https://github.com/servo/rust-smallvec"

[[dependencies]]
name = "stable_deref_trait"
version = "1.2.0"
description = """
An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.
"""
license = "MIT/Apache-2.0"
notices = ["Copyright (c) 2017 Robert Grosse"]
authors = ["Robert Grosse <n210241048576@gmail.com>"]
repository = "https://github.com/storyyeller/stable_deref_trait"

[[dependencies]]
name = "syn"
version = "1.0.109"
description = "Parser for Rust source code"
license = "MIT OR Apache-2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/syn"

[[dependencies]]
name = "syn"
version = "2.0.100"
description = "Parser for Rust source code"
license = "MIT OR Apache-2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/syn"

[[dependencies]]
name = "thiserror"
version = "2.0.12"
description = "derive(Error)"
license = "MIT OR Apache-2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/thiserror"

[[dependencies]]
name = "thiserror-impl"
version = "2.0.12"
description = "Implementation detail of the `thiserror` crate"
license = "MIT OR Apache-2.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/thiserror"

[[dependencies]]
name = "thread_local"
version = "1.1.8"
description = "Per-object thread-local storage"
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) 2016 The Rust Project Developers"]
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
repository = "https://github.com/Amanieu/thread_local-rs"

[[dependencies]]
name = "tracing"
version = "0.1.41"
description = """
Application-level tracing for Rust.
"""
license = "MIT"
notices = ["Copyright (c) 2019 Tokio Contributors"]
authors = [
  "Eliza Weisman <eliza@buoyant.io>",
  "Tokio Contributors <team@tokio.rs>",
]
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"

[[dependencies]]
name = "tracing-attributes"
version = "0.1.28"
description = """
Procedural macro attributes for automatically instrumenting functions.
"""
license = "MIT"
notices = ["Copyright (c) 2019 Tokio Contributors"]
authors = [
  "Tokio Contributors <team@tokio.rs>",
  "Eliza Weisman <eliza@buoyant.io>",
  "David Barsky <dbarsky@amazon.com>",
]
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"

[[dependencies]]
name = "tracing-core"
version = "0.1.33"
description = """
Core primitives for application-level tracing.
"""
license = "MIT"
notices = ["Copyright (c) 2019 Tokio Contributors"]
authors = ["Tokio Contributors <team@tokio.rs>"]
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"

[[dependencies]]
name = "tracing-error"
version = "0.2.1"
description = """
Utilities for enriching errors with `tracing`.
"""
license = "MIT"
notices = ["Copyright (c) 2019 Tokio Contributors"]
authors = [
  "Eliza Weisman <eliza@buoyant.io>",
  "Jane Lusby <jlusby@yaah.dev>",
  "Tokio Contributors <team@tokio.rs>",
]
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"

[[dependencies]]
name = "tracing-subscriber"
version = "0.3.19"
description = """
Utilities for implementing and composing `tracing` subscribers.
"""
license = "MIT"
notices = ["Copyright (c) 2019 Tokio Contributors"]
authors = [
  "Eliza Weisman <eliza@buoyant.io>",
  "David Barsky <me@davidbarsky.com>",
  "Tokio Contributors <team@tokio.rs>",
]
repository = "https://github.com/tokio-rs/tracing"
homepage = "https://tokio.rs"

[[dependencies]]
name = "unarray"
version = "0.1.4"
description = "Utilities for working with uninitialized arrays"
license = "MIT OR Apache-2.0"
notices = ["Copyright (c) [year] [fullname]"]
repository = "https://github.com/cameron1024/unarray"

[[dependencies]]
name = "unic-char-property"
version = "0.9.0"
description = "UNIC — Unicode Character Tools — Character Property taxonomy, contracts and build macros"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-char-range"
version = "0.9.0"
description = "UNIC — Unicode Character Tools — Character Range and Iteration"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-common"
version = "0.9.0"
description = "UNIC — Common Utilities"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd"
version = "0.9.0"
description = "UNIC — Unicode Character Database"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-age"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Age"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-bidi"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Bidi Properties"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-block"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Unicode Blocks"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-case"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Case Properties"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-category"
version = "0.9.0"
description = "UNIC — Unicode Character Database — General Category"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-common"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Common Properties"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-hangul"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Hangul Syllable Composition & Decomposition"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-ident"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Identifier Properties"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-name"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Name"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-name_aliases"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Name Aliases"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-normal"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Normalization Properties"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-segment"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Segmentation Properties"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unic-ucd-version"
version = "0.9.0"
description = "UNIC — Unicode Character Database — Version"
license = "MIT/Apache-2.0"
authors = ["The UNIC Project Developers"]
repository = "https://github.com/open-i18n/rust-unic/"

[[dependencies]]
name = "unicode-ident"
version = "1.0.18"
description = "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31"
license = "(MIT OR Apache-2.0) AND Unicode-3.0"
notices = ["Copyright © 1991-2023 Unicode, Inc."]
authors = ["David Tolnay <dtolnay@gmail.com>"]
repository = "https://github.com/dtolnay/unicode-ident"

[[dependencies]]
name = "valuable"
version = "0.1.1"
description = """
Object-safe value inspection, used to pass un-typed structured data across trait-object boundaries.
"""
license = "MIT"
repository = "https://github.com/tokio-rs/valuable"

[[dependencies]]
name = "version_check"
version = "0.9.5"
description = "Tiny crate to check the version of the installed/running rustc."
license = "MIT/Apache-2.0"
notices = ["Copyright (c) 2017-2018 Sergio Benitez"]
authors = ["Sergio Benitez <sb@sergio.bz>"]
repository = "https://github.com/SergioBenitez/version_check"

[[dependencies]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
description = "Experimental WASI API bindings for Rust"
license = "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT"
authors = ["The Cranelift Project Developers"]
repository = "https://github.com/bytecodealliance/wasi"

[[dependencies]]
name = "xmlem"
version = "0.3.3"
description = "XML DOM implementation with pretty printing"
license = "Apache-2.0 OR MIT"
notices = ["Copyright (c) 2022  Brendan Molloy <brendan@bbqsrc.net>"]
authors = ["Brendan Molloy <brendan@bbqsrc.net>"]
repository = "https://github.com/xmlem/xmlem"

[[dependencies]]
name = "zerocopy"
version = "0.8.25"
description = '''Zerocopy makes zero-cost memory manipulation effortless. We write "unsafe" so you don't have to.'''
license = "BSD-2-Clause OR Apache-2.0 OR MIT"
notices = [
  "Copyright 2019 The Fuchsia Authors.",
  "Copyright 2023 The Fuchsia Authors",
]
authors = [
  "Joshua Liebow-Feeser <joshlf@google.com>",
  "Jack Wrenn <jswrenn@amazon.com>",
]
repository = "https://github.com/google/zerocopy"

[[dependencies]]
name = "zerocopy-derive"
version = "0.8.25"
description = "Custom derive for traits from the zerocopy crate"
license = "BSD-2-Clause OR Apache-2.0 OR MIT"
notices = [
  "Copyright 2019 The Fuchsia Authors.",
  "Copyright 2023 The Fuchsia Authors",
]
authors = [
  "Joshua Liebow-Feeser <joshlf@google.com>",
  "Jack Wrenn <jswrenn@amazon.com>",
]
repository = "https://github.com/google/zerocopy"