-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
1165 lines (1025 loc) · 46.6 KB
/
Cargo.toml
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
# ==============================================================================
# https://doc.rust-lang.org/cargo/reference/manifest.html
#
## Table of Contents
#
# * [workspace]
# * [package]
# * [lib]
#
# * [features]
# - Development (__*)
# - Environment (std,alloc,no_std)
# - Module (all,code,data,lang,media,num,phys,sys,text,ui,work, …)
# - Safety (safe,unsafe,safest)
# - Nightly (nightly_*)
# - Capability (_*)
# - doc (_doc*)
# - data (_data*, _bit*, _collections*, _sort*, _tuple*, _value*, …)
# - num (_num*, _cmp*, _int_*, _float_*, …)
# - text (_text*, _char*, _string_*)
# - Dependency (dep_*)
#
# * [dependencies] (required|optional)
# * [dev-dependencies]
# * [build-dependencies]
#
# * [patch]
# * [profile.*]
# * [package.metadata.*]
# * [badges]
#
# - lints
# * [lints.rust]
# * [lints.rustdoc]
# * [lints.clippy]
# * [lints.rust.unexpected_cfgs]
#
# * [[bench]]
# * [[example]]
[workspace]
members = [".", "macros"]
resolver = "3"
[package]
name = "devela"
description = "A cohesive development layer."
version = "0.23.0-wip" # In sync with DOCS/CHANGELOG.md
rust-version = "1.84.1" # In sync with README.md & .github/workflows/check.yml
edition = "2021" # WAIT:1.85 edition 2024
authors = ["José Luis Cruz <[email protected]>"]
repository = "https://github.com/andamira/devela"
documentation = "https://docs.rs/devela"
license = "MIT OR Apache-2.0"
readme = "DOCS/CRATES_README.md"
include = [
# configuration:
"/Cargo.toml", "/config/*",
# source code:
"/build/**/*.rs", "/src/**/*.rs",
# documentation:
"/build/**/*.md", "/src/**/*.md",
"/DOCS/VENDORED*.md", "/LICENSE*",
# examples in documentation:
"/examples/code/enumint.rs",
"/examples/code/enumset.rs",
"/examples/data/bitfield.rs",
"/examples/data/id_seq.rs",
"/examples/num/niche.rs",
"/examples/work/coro_run.rs",
]
autoexamples = false
categories = ["development-tools", "rust-patterns", "no-std::no-alloc"]
keywords = ["dev", "helper", "library", "std", "extension"]
build = "build/mod.rs"
publish = true
[lib]
path = "./src/Lib.rs"
bench = false
[features] # 274/300 (26 remaining), 145 visible, 129 hidden
# ==============================================================================
# https://doc.rust-lang.org/cargo/reference/features.html
# Features are grouped in the following categories:
# - Development __*
# - Environment alloc, [no_]std
# - Module …
# - Safety [safe|unsafe]_*, …
# - Nightly nightly_[coro|simd|stable[_…]]
# - Capability _*
# - Dependency dep_*
#
# Sintax:
# - ["name"]: Visible public-facing features.
# - ["_name"]: Hidden extra capability features.
# - ["__name"]: Development & maintenance features.
#
# Notes:
# - Features are in sync with ./build/features.rs & ./src/_doc/features.md.
# - List and count features with `./utils/manifest.sh features`.
#* Development features *#
# ------------------------------------------------------------------------------
__dbg = [] # shows extra debugging information.
__no_test = [] # exclude examples from being tested.
__force_miri_dst = [] # inhibits disabling miri on several modules
#* Environment features *#
# ------------------------------------------------------------------------------
alloc = [ # enables `alloc` functionality
"allocator-api2?/alloc", "bytemuck?/extern_crate_alloc", "itertools?/use_alloc",
"jiff?/alloc", "memchr?/alloc", "orion?/alloc", "ring?/alloc", "rkyv?/alloc",
"rustix?/alloc", "serde?/alloc", "winnow?/alloc",
]
std = [ # disables `no_std` compatibility and enables `std` functionality
"alloc", "allocator-api2?/std", "atomic?/std", "bumpalo?/std",
"bytemuck?/extern_crate_std", "itertools?/use_std", "jiff?/std", "js-sys?/std",
"log?/std", "memchr?/std", "nc?/std", "orion?/safe_api", "raw-cpuid?/std",
"regex-lite?/std", "ring?/std", "rkyv?/std", "rustix?/std", "serde?/std",
"tracing?/std", "wasm-bindgen?/std", "web-sys?/std", "wide?/std", "winnow?/std",
]
no_std = [] # enables functionality incompatible with or substitute of `std`
#* Module features *#
# ------------------------------------------------------------------------------
# They set automatic compile flags named `*··`, used for reflection.
# For example, `num··` will be set if any num submodule feature is enabled.
all = [ # enables all the modules and submodules
"code", "data", "lang", "media", "num", "phys", "sys", "text", "ui", "work",
]
code = []
error = [] # AllError, DataError, NumError, TextError…
data = ["hash"]
# codec
hash = [] # HashFnv, HashFx, HashPengy
lang = []
media = ["audio", "color", "draw", "font", "image", "midi"]
audio = ["sdl2?/mixer"]
draw = ["sdl2?/gfx"] # "sdl3?/gfx"
color = []
font = ["sdl2?/ttf"]
image = ["sdl2?/image"]
midi = []
num = ["alg", "geom", "prim", "rand", "unit", "wave"]
alg = [] # algebra (linear & symbolic)
geom = [] # geometry
prim = ["cast", "join", "split"]
cast = [] # PrimitiveCast
join = [] # PrimitiveJoin
split = [] # PrimitiveSplit
rand = ["rustix?/rand"] # random number generators
unit = [] # unit prefixes
wave = [] # wavelets
phys = ["time"]
time = ["rustix?/time"]
sys = ["io", "mem"]
io = ["tokio?/io-util", "tokio?/io-std"] # no_std_io…
mem = ["bit"]
bit = [] # BitSize
# os
linux = []
windows = ["crossterm?/windows", "midir?/winrt"]
text = ["ascii", "fmt", "str"]
ascii = [] # AsciiChar
fmt = [] # NumStr
str = [] # Str, ExtStr, ExtString
ui = ["layout"]
layout = []
work = ["bytemuck?/zeroable_atomics"]
process = ["rustix?/process", "tokio?/process"]
sync = ["rustix?/thread", "tokio?/sync"]
thread = ["tokio?/rt", "tokio?/rt-multi-thread"]
#* Safety features *#
# ------------------------------------------------------------------------------
# They are prefixed with either `safe` or `unsafe`.
# Safe features are associated to *modules*, and unsafe features to *purposes*.
#
# Usage:
# 1. enable the desired `unsafe` feature.
# 2. don't enable the `safe` feature for that module.
#
# The `safest` feature forbids unsafe transitively in dependencies
# (except for Rust's `core`, `alloc` and `std`).
#
# In sync with ./build/features.rs::[UN]SAFE[ST] & ./src/lib.rs::safety)
safe = [ # [9] forbids `unsafe` (and overrides unsafe features)
"safe_code", "safe_data", "safe_lang", "safe_media", "safe_num",
"safe_phys", "safe_sys", "safe_text", "safe_work",
] # `safe··`
safe_code = []
safe_data = []
safe_lang = []
safe_media = [ # [5]
"safe_audio", "safe_color", "safe_draw", "safe_font", "safe_image"]
safe_audio = []
safe_color = []
safe_draw = []
safe_font = []
safe_image = []
safe_num = []
safe_phys = ["safe_time"] # [1]
safe_time = []
safe_sys = ["safe_io", "safe_mem"] # [2]
safe_io = []
safe_mem = []
safe_text = []
safe_ui = ["safe_layout"] # [1]
safe_layout = []
safe_work = []
# safe_async
safest = [ # forbids `unsafe` also in dependencies (except for alloc, core, std)
"safe"
]
unsafe = [ # [11] enables `unsafe` (as long as it isn't forbidden for that module)
"unsafe_array", "unsafe_async", "unsafe_hint", "unsafe_layout",
"unsafe_niche", "unsafe_ptr", "unsafe_slice", "unsafe_str",
"unsafe_sync", "unsafe_syscall", "unsafe_thread",
] # `unsafe··`
unsafe_array = [] # faster array initialization, UninitArray.
unsafe_async = [] # task_waker_noop, CoroRun.
unsafe_hint = [] # unreachable_unchecked, unchecked arithmetic.
unsafe_layout = [] # MemPod, DSTs in the stack, ExtAny::downcast*, Mem::*.
unsafe_niche = [] # unchecked niche constructors.
unsafe_ptr = [] # Pinned, pop methods without Clone, Ptr::*.
unsafe_slice = [] # extra slice methods, avoid bound checks.
unsafe_str = [] # unchecked utf-8 char and &str conversions.
unsafe_sync = [] # Send and Sync impls.
unsafe_syscall = [] # os syscalls.
unsafe_thread = [] # Logging::set_logger_racy, Env::{remove_var, set_var}.
#* Nightly features *#
# ------------------------------------------------------------------------------
# They are prefixed with `nightly_`.
# Enabling any of these will set the `nightly··` reflection flag.
#
## Links
# - https://doc.rust-lang.org/unstable-book/library-features.html
# - https://releases.rs/
# - ./utils/release_dates.rs
# - ./DOCS/NIGHTLY.md
nightly = [ # [8] (in sync with ./build/features.rs::NIGHTLY & ./src/lib.rs)
"nightly_allocator", "nightly_autodiff", "nightly_bigint", "nightly_coro",
"nightly_doc", "nightly_float", "nightly_simd",
"nightly_stable",
] # `nightly··`
# WAIT: [allocator_api](https://github.com/rust-lang/rust/issues/32838)
# - https://reloaded-project.github.io/Reloaded-III/Research/Demystifying-Rust-Allocators.html
nightly_allocator = [ # allocator_api
"allocator-api2?/nightly", "bumpalo?/allocator_api", "hashbrown?/nightly"]
# WAIT: [autodiff](https://github.com/rust-lang/rust/issues/124509)
nightly_autodiff = [] # autodiff
#
# WAIT: [bigint_helper_methods](https://github.com/rust-lang/rust/issues/85532)
nightly_bigint = [] # bigint_helper_methods
#
# WAIT: [coroutines](https://github.com/rust-lang/rust/issues/43122)
nightly_coro= [] # coroutines, coroutine_trait, iter_from_coroutine
#
# WAIT: [doc_cfg](https://github.com/rust-lang/rust/issues/43781)
# WAIT: [doc_notable_trait](https://github.com/rust-lang/rust/issues/45040)
nightly_doc = [] # not(doc_auto_cfg)
#
# WAIT: [f16_and_f128](https://github.com/rust-lang/rust/issues/116909)
nightly_float = ["bytemuck?/nightly_float"] # f16, f128
#
# WAIT: [portable_simd](https://github.com/rust-lang/rust/issues/86656)
nightly_simd = [] # portable_simd
#
# nightly features that should become stable soon enough.
nightly_stable = [ # In sync with ./src/lib.rs and ./DOCS/NIGHTLY.md
"nightly_stable_next1", "nightly_stable_next2", "nightly_stable_later"]
nightly_stable_next1 = [] # 1.85 (+edition 2024)
nightly_stable_next2 = [] # 1.86
nightly_stable_later = [] # 1.?? stable soon enough
#* Capability features *#
# ------------------------------------------------------------------------------
# Most of these features are prefixed with an underscore (_) to be semi-hidden.
# Enabling them enables extra implementations which increases compilation times.
#
# They set automatic compile flags named `_*··`, used for reflection.
# For example, `_stack··` will be set if any _stack* feature is enabled.
# Which is done in ./build/features.rs
#
# TOC
# - default
# - docs
# - code
# - data
# - num
# - text
# default = []
_max = ["_data_all", "_num_all", "_text_all"]
_maxest = ["_max", "_tuple_72", "_unroll_2048"]
#* _docs capabilities *#
# ---------------------
# WAIT [\href does not work in display mode](https://github.com/KaTeX/KaTeX/issues/3571)
# WAIT [support \SI and \si from siunitx](https://github.com/KaTeX/KaTeX/issues/817)
_docs = [ # the minimum capabilities to document everything
# modules:
"all", "linux",
# data:
"_bit_u8", "_destaque_u8", "_stack_u8", "_graph_u8", "_tuple", "_unroll", "_value64",
# num:
"_cmp_f64", "_cmp_u32", "_cmp_i64",
"_float_f64", "_int_u32", "_int_i64",
# text:
"_string_u8", "_string_nonul", "_char_all",
]
_docsrs_stable_nodep = ["_docs", "std", "unsafe"] # + std + unsafe
_docsrs_stable = ["_docsrs_stable_nodep", "dep_all"] # + dependencies
_docsrs = ["_docsrs_stable", "nightly"] # + nightly
_docsrs_nodep = ["_docsrs_stable_nodep", "nightly"] # - dependencies
#* code capabilities *#
# ---------------------
# `unroll!` macro and maximum recursion supported
_unroll = [] # recursion 64
_unroll_128 = ["_unroll"]
_unroll_256 = ["_unroll_128"]
_unroll_512 = ["_unroll_256"]
_unroll_1024 = ["_unroll_512"]
_unroll_2048 = ["_unroll_1024"]
#* data capabilities *#
# ---------------------
_data_all = ["_bit_all", "_collections_all", "_tuple", "_sort_all", "_value_all"]
# `Bitwise`, `bitfield`, `enumset`:
_bit_all = [
"_bit_i8", "_bit_i16", "_bit_i32", "_bit_i64", "_bit_i128", "_bit_isize",
"_bit_u8", "_bit_u16", "_bit_u32", "_bit_u64", "_bit_u128", "_bit_usize"]
_bit_i8 = []
_bit_i16 = []
_bit_i32 = []
_bit_i64 = []
_bit_i128 = []
_bit_isize = []
_bit_u8 = []
_bit_u16 = []
_bit_u32 = []
_bit_u64 = []
_bit_u128 = []
_bit_usize = []
# `Destaque*`, `Graph*`, `Node*`, `Stack*`, `Tuple`:
_collections_all = [ "_destaque_all", "_graph_all", "_node_all", "_stack_all", "_tuple" ]
_destaque_all = ["_destaque_u8", "_destaque_u16", "_destaque_u32", "_destaque_usize"]
_destaque_u8 = []
_destaque_u16 = []
_destaque_u32 = []
_destaque_usize = []
_graph_all = ["_graph_u8", "_graph_u16", "_graph_u32", "_graph_usize"]
_graph_u8 = ["_node_u8"]
_graph_u16 = ["_node_u16"]
_graph_u32 = ["_node_u32"]
_graph_usize = ["_node_usize"]
_node_all = ["_node_u8", "_node_u16", "_node_u32", "_node_usize"]
_node_u8 = []
_node_u16 = []
_node_u32 = []
_node_usize = []
_stack_all = ["_stack_u8", "_stack_u16", "_stack_u32", "_stack_usize"]
_stack_u8 = []
_stack_u16 = []
_stack_u32 = []
_stack_usize = []
# `Sort`:
_sort_all = [
"_sort_i8", "_sort_i16", "_sort_i32", "_sort_i64", "_sort_i128", "_sort_isize",
"_sort_u8", "_sort_u16", "_sort_u32", "_sort_u64", "_sort_u128", "_sort_usize",
"_sort_f32", "_sort_f64"]
_sort_i8 = []
_sort_i16 = []
_sort_i32 = []
_sort_i64 = []
_sort_i128 = []
_sort_isize = []
_sort_u8 = []
_sort_u16 = []
_sort_u32 = []
_sort_u64 = []
_sort_u128 = []
_sort_usize = []
_sort_f32 = ["_cmp_f32"]
_sort_f64 = ["_cmp_f64"]
# `Tuple` trait and maximum arity supported (example relative compilation times)
_tuple = [] # arity 12 # time: 3.3s, codegen: 96K (for >=2nd compilations)
_tuple_24 = ["_tuple"] # time: 4.0s, codegen: 279K
_tuple_36 = ["_tuple_24"] # time: 4.6s, codegen: 561K
_tuple_48 = ["_tuple_36"] # time: 6.3s, codegen: 942K
_tuple_72 = ["_tuple_48"] # time: 10.3s, codegen: 2.0M
# `DataValue*, DataType*, DataRaw*`:
_value_all = [
"_value8", "_value16", "_value32", "_value64",
"_value128", "_value256", "_value512", "_value1024",
]
_value8 = []
_value16 = []
_value32 = []
_value64 = []
_value128 = []
_value256 = []
_value512 = []
_value1024 = []
#* num capabilities *#
# ---------------------
_num_all = ["_cmp_all", "_nums_all"]
# `Compare`:
_cmp_all = [
"_cmp_i8", "_cmp_i16", "_cmp_i32", "_cmp_i64", "_cmp_i128", "_cmp_isize",
"_cmp_u8", "_cmp_u16", "_cmp_u32", "_cmp_u64", "_cmp_u128",
"_cmp_f16", "_cmp_f32", "_cmp_f64", "_cmp_f128"]
_cmp_i8 = []
_cmp_i16 = []
_cmp_i32 = []
_cmp_i64 = []
_cmp_i128 = []
_cmp_isize = []
_cmp_u8 = []
_cmp_u16 = []
_cmp_u32 = []
_cmp_u64 = []
_cmp_u128 = []
_cmp_f16 = ["_float_f16"]
_cmp_f32 = ["_float_f32"]
_cmp_f64 = ["_float_f64"]
_cmp_f128 = ["_float_f128"]
# `[Num]Int`, `[Num]Float`, `[Num]Frac`, `Point`, `Angle`, `Vector`:
_nums_all = ["_float_all", "_int_all"]
_float_all = ["_float_f16", "_float_f32", "_float_f64", "_float_f128"]
_float_f16 = []
_float_f32 = []
_float_f64 = []
_float_f128 = []
_int_all = ["_int_iall", "_int_uall"]
_int_iall = ["_int_i8", "_int_i16", "_int_i32", "_int_i64", "_int_i128", "_int_isize"]
_int_i8 = []
_int_i16 = []
_int_i32 = []
_int_i64 = []
_int_i128 = []
_int_isize = []
_int_uall = ["_int_u8", "_int_u16", "_int_u32", "_int_u64", "_int_u128", "_int_usize"]
_int_u8 = []
_int_u16 = []
_int_u32 = []
_int_u64 = []
_int_u128 = []
_int_usize = []
#* text capabilities *#
# ---------------------
_text_all = ["_char_all", "_string_all"]
# char*
_char_all = ["_char7", "_char8", "_char16"]
_char7 = []
_char8 = []
_char16 = []
# StringU*, StringNonul:
_string_all = [
"_string_u8", "_string_u16", "_string_u32", "_string_usize",
"_string_nonul"]
_string_u8 = []
_string_u16 = []
_string_u32 = []
_string_usize = []
#
_string_nonul = []
#* Dependency features *#
# ------------------------------------------------------------------------------
# The names are prefixed with `dep_`, using underscores in place of dashes.
# They are associated to optional dependencies and groups of modules.
# Enabling any of these will set the `dep··` reflection flag.
#
##Links
# - https://doc.rust-lang.org/edition-guide/rust-2024/cargo-remove-implicit-features.html
# In sync with ./config/dep_all.rs & ./src/_dep.rs
dep_all = [ # enables all 50 optional dependencies:
"dep_allocator_api2", "dep_atomic", "dep_bumpalo", "dep_bytemuck", "dep_const_str",
"dep_crossterm", "dep_fltk", "dep_flume", "dep_gilrs", "dep_hashbrown", "dep_image",
"dep_itertools", "dep_jiff", "dep_js_sys", "dep_kira", "dep_libm", "dep_log", "dep_memchr",
"dep_midir", "dep_miniquad", "dep_nc", "dep_orion", "dep_portable_atomic", "dep_pyo3",
"dep_rand_core", "dep_rayon", "dep_raw_cpuid", "dep_regex_lite", "dep_ring", "dep_rkyv",
"dep_rodio", "dep_rustix", "dep_safe_arch", "dep_sdl2", "dep_sdl3", "dep_serde",
"dep_stringzilla", "dep_sysinfo", "dep_symphonia", "dep_tinyaudio", "dep_toml_edit",
"dep_tokio", "dep_tracing", "dep_unicode_segmentation", "dep_unicode_width", "dep_ureq",
"dep_wasm_bindgen", "dep_web_sys", "dep_wide", "dep_winnow",
]
# groups of dependencies, environment and modules
alloc_deps = ["alloc", "dep_bumpalo", "dep_allocator_api2"]
linux_deps = ["linux", "dep_atomic", "dep_bytemuck", "dep_nc", "dep_rustix"]
text_deps = ["text", "dep_const_str", "dep_memchr", "dep_regex_lite",
"dep_stringzilla", "dep_unicode_segmentation", "dep_unicode_width"]
work_deps = ["work", "dep_atomic", "dep_portable_atomic", "dep_rayon", "dep_tokio"]
# individual dependencies features
dep_allocator_api2 = ["dep:allocator-api2", "hashbrown?/allocator-api2", # sys::mem::alloc
"bumpalo?/allocator-api2"]
dep_atomic = ["dep:atomic"] # work::sync
dep_bumpalo = ["dep:bumpalo"] # sys::mem::alloc
dep_bytemuck = ["dep:bytemuck", "safe_arch?/bytemuck"] # ···
dep_const_str = ["dep:const-str"] # text::str
dep_crossterm = ["dep:crossterm", "std"] # ui::service
dep_fltk = ["dep:fltk"] # ui::service
dep_flume = ["dep:flume"] # work::sync
dep_gilrs = ["dep:gilrs"] # ui::service
dep_hashbrown = ["dep:hashbrown", "alloc", "pyo3?/hashbrown", # data::cols
"rkyv?/hashbrown-0_15"]
dep_image = ["dep:image"] # media::image
dep_itertools = ["dep:itertools"] # data::iter
dep_jiff = ["dep:jiff", "alloc"] # phys::time
dep_js_sys = ["dep:js-sys"] # lang::js
dep_kira = ["dep:kira"] # sys::sound
dep_libm = ["dep:libm"] # num::float
dep_log = ["dep:log", "tracing?/log"] # sys::log
dep_memchr = ["dep:memchr", "winnow?/simd"] # text:str
dep_midir = ["dep:midir"] # media::midi
dep_miniquad = ["dep:miniquad"] # sys::service
dep_nc = ["dep:nc"] # sys::os::linux
dep_orion = ["dep:orion"] # data::xipher
dep_portable_atomic = ["dep:portable-atomic"] # work::sync
dep_pyo3 = ["dep:pyo3", "std"] # lang::py
dep_rand_core = ["dep:rand_core"] # num::rand
dep_rayon = ["dep:rayon", "image?/rayon", "sysinfo?/multithread"] # work::thread
dep_raw_cpuid = ["dep:raw-cpuid"] # sys::arch
dep_regex_lite = ["dep:regex-lite", "std"] # text::parse
dep_ring = ["dep:ring"] # data::xipher
dep_rkyv = ["dep:rkyv"] # data::serde
dep_rodio = ["dep:rodio"] # sys::sound
dep_rustix = ["dep:rustix"] # sys::os
dep_safe_arch = ["dep:safe_arch"] # sys::arch
dep_sdl2 = ["dep:sdl2"] # ui::service
dep_sdl3 = ["dep:sdl3"] # ui::service
dep_serde = ["dep:serde", "allocator-api2?/serde", "bumpalo?/serde", # data::serde
"gilrs?/serde-serialize", "kira?/serde", "orion?/serde",
"portable-atomic?/serde", "toml_edit?/serde", "wide?/serde"]
dep_stringzilla = ["dep:stringzilla"] # text::str
dep_symphonia = ["dep:symphonia", "kira?/symphonia", "rodio?/symphonia"] # sys::sound
dep_sysinfo = ["dep:sysinfo", "std"] # sys::
dep_tinyaudio = ["dep:tinyaudio"] # sys::sound
dep_toml_edit = ["dep:toml_edit"] # text::parse
dep_tokio = ["dep:tokio"] # work::async
dep_tracing = ["dep:tracing"] # sys::log
dep_unicode_segmentation = ["dep:unicode-segmentation"] # text::
dep_unicode_width = ["dep:unicode-width"] # text::
dep_ureq = ["dep:ureq"] # sys::net
dep_wasm_bindgen = ["dep:wasm-bindgen"] # lang
dep_web_sys = ["dep:web-sys"] # ui::web
dep_wide = ["dep:wide"] # ...
dep_winnow = ["dep:winnow", "toml_edit?/parse"] # text::parse
[dependencies] # 52 (2 required, 50 optional)
# ==============================================================================
# https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html
#
## notes
# - dependencies are sorted alfabetically, with links and comments.
# - use `./utils/manifest.sh dependencies` to see the numbers.
#
## when adding a new optional dependency
# 1. Update `dep_all` above and ./config/dep_all.rs.
# 2. Add a new entry below and in ./src/_deps.rs.
#* required dependencies *#
[dependencies.devela_macros] # https://crates.io/crates/devela_macros
version = "0.12.1" # ✓ https://github.com/andamira/devela_macros/blob/main/DOCS/CHANGELOG.md
# path = "./macros" # safe
[dependencies.paste_crate] # https://crates.io/crates/paste
version = "1.0.15" # ✗ https://github.com/dtolnay/paste/commits/master/
package = "paste" # safe, ARCHIVED
#* optional dependencies *#
[dependencies.allocator-api2] # https://crates.io/crates/allocator-api2
version = "0.2.21" # ✗ https://github.com/zakarumych/allocator-api2/commits/main/
optional = true # unsafe
default-features = false # 6 https://docs.rs/crate/allocator-api2/latest/features
features = [] # ["fresh-rust"] WAIT:FIX: https://github.com/zakarumych/allocator-api2/issues/26
# WAIT: [nightly impl for unsize_box](https://github.com/zakarumych/allocator-api2/pull/23)
[dependencies.atomic] # https://crates.io/crates/atomic
version = "0.6.0" # ✗ https://github.com/Amanieu/atomic-rs/commits/master/
optional = true # unsafe
default-features = false # 4 https://docs.rs/crate/atomic/latest/features
features = ["fallback"]
[dependencies.bumpalo] # https://crates.io/crates/bumpalo
version = "3.16.0" # ✓ https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md
optional = true # unsafe
default-features = false # 7 https://docs.rs/crate/bumpalo/latest/features
features = ["boxed", "collections"]
[dependencies.bytemuck] # https://crates.io/crates/bytemuck
version = "1.21.0" # ✓ https://github.com/Lokathor/bytemuck/blob/main/changelog.md
optional = true # unsafe
default-features = false # 21 https://docs.rs/crate/bytemuck/latest/features
features = ["alloc_uninit", "align_offset", "min_const_generics", "must_cast",
"zeroable_maybe_uninit"]
[dependencies.const-str] # https://crates.io/crates/const-str
version = "0.6.2" # ✗ https://github.com/Nugine/const-str/commits/main/
optional = true # unsafe
default-features = false # 8 https://docs.rs/crate/const-str/latest/features
[dependencies.crossterm] # https://crates.io/crates/crossterm
# In sync with src::ui::service::crossterm::service
version = "0.28.1" # ✓ https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md
optional = true # unsafe
default-features = false # 9 https://docs.rs/crate/crossterm/latest/features
features = ["bracketed-paste", "events"]
[dependencies.fltk] # https://crates.io/crates/fltk
version = "1.5" # ✓ https://github.com/fltk-rs/fltk-rs/blob/master/CHANGELOG.md
optional = true # unsafe
default-features = false # 23 https://docs.rs/crate/fltk/latest/features
# https://github.com/fltk-rs/fltk-rs/blob/master/FAQ.md
# features = ["fltk-bundled"] # IMPROVE: feature-gate
# INSTALL: libpango1.0-dev libxft-dev
[dependencies.flume] # https://crates.io/crates/flume
version = "0.11" # ✓ https://github.com/zesterer/flume/blob/master/CHANGELOG.md
optional = true # safe
default-features = false # 8 https://docs.rs/crate/flume/latest/features
features = [] #
# feature-gated: TODO:async,
# other: spin, eventual-fairness, select
[dependencies.gilrs] # https://crates.io/crates/gilrs
version = "0.11" # ✗ https://gitlab.com/gilrs-project/gilrs/-/commits/master?ref_type=HEADS
optional = true #
default-features = false # 5 https://docs.rs/crate/gilrs/latest/features
features = ["wgi"]
# INSTALL: libudev-dev
[dependencies.hashbrown] # https://crates.io/crates/hashbrown
version = "0.15.1" # ✓ https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md
optional = true # unsafe
default-features = false # 14 https://docs.rs/crate/hashbrown/latest/features
features = ["default-hasher", "inline-more"]
[dependencies.image] # https://crates.io/crates/image
version = "0.25.5" # ✓ https://github.com/image-rs/image/blob/main/CHANGES.md
optional = true # unsafe (mostly dependencies)
default-features = false # 23 https://docs.rs/crate/image/latest/features
features = ["jpeg", "png", "pnm"]
# feature-gated: "rayon",
# other: "bmp", "ff", "ico", "gif", "qoi", "dds", "hdr", "exr", "tga", "tiff", "webp"
# heavy: "avif"
# WAIT: [png 0.18](https://github.com/image-rs/image-png/issues/508)
[dependencies.itertools] # https://crates.io/crates/itertools
version = "0.14" # ✓ https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md
optional = true # safe enough (simple few)
default-features = false # 3 https://docs.rs/crate/itertools/latest/features
[dependencies.jiff] # https://crates.io/crates/jiff
version = "0.1" # ✓ https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md
optional = true # safe ± (few & checked)
default-features = false # 10 https://docs.rs/crate/jiff/latest/features
# features = [""] # https://docs.rs/jiff/0.1.14/jiff/#crate-features
[dependencies.js-sys] # https://crates.io/crates/js-sys
version = "0.3.73" # ✗ https://github.com/rustwasm/wasm-bindgen/commits/main/crates/js-sys
optional = true # unsafe
default-features = false # 2 https://docs.rs/crate/js-sys/latest/features
# deps: once-cell, wasm-bindgen/std
[dependencies.kira] # https://crates.io/crates/kira
version = "0.10.2" # ✓ https://github.com/tesselode/kira/releases
optional = true # safe (although unsafe deps?)
default-features = false # 10 https://docs.rs/crate/kira/latest/features
features = ["cpal"] # symphonia, flac, mp3, ogg, wav
# https://docs.rs/kira/latest/kira/#features
# INSTALL: libasound2-dev
[dependencies.libm] # https://crates.io/crates/libm
version = "0.2.11" # ✓ https://github.com/rust-lang/libm/blob/master/CHANGELOG.md
optional = true # unsafe
default-features = false # 3 https://docs.rs/crate/libm/latest/features
[dependencies.log] # https://crates.io/crates/log
version = "0.4.25" # ✓ https://github.com/rust-lang/log/blob/master/CHANGELOG.md
optional = true # safe (optional unsafe)
default-features = false # 25 https://docs.rs/crate/log/latest/features
# features = ["kv"]
[dependencies.memchr] # https://crates.io/crates/memchr
version = "2.7" # ✗ https://github.com/BurntSushi/memchr/commits/master/
optional = true # unsafe
default-features = false # 9 https://docs.rs/crate/memchr/latest/features
[dependencies.midir] # https://crates.io/crates/midir
version = "0.10.1" # ✓ https://github.com/Boddlnagg/midir/blob/master/CHANGELOG.md
optional = true # unsafe
default-features = false # 7 https://docs.rs/crate/midir/latest/features
# INSTALL: libasound2-dev
[dependencies.miniquad] # https://crates.io/crates/miniquad
# In sync with src::ui::service::miniquad::service
version = "0.4.7" # ✗ https://github.com/not-fl3/miniquad/commits/master/
optional = true # unsafe
default-features = false # 1 https://docs.rs/crate/miniquad/latest/features
# WAIT: [update conf module to derive more traits](https://github.com/not-fl3/miniquad/pull/523)
# WAIT: [use AtomicPtr in NATIVE_DISPLAY](https://github.com/not-fl3/miniquad/pull/525)
[dependencies.nc] # https://crates.io/crates/nc
version = "0.9.5" # ✗ https://github.com/XuShaohua/nc/commits/main/
optional = true # unsafe
default-features = false # 2 https://docs.rs/crate/nc/latest/features
# WAIT: [rt_sigaction](https://github.com/XuShaohua/nc/issues/29)
[dependencies.orion] # https://crates.io/crates/orion
version = "0.17" #
optional = true # safe (+some dependencies)
default-features = false # 7 https://docs.rs/crate/orion/latest/features
# features = [] # https://github.com/orion-rs/orion/wiki/Crate-features
# feature-gated: alloc, safe_api, serde
[dependencies.portable-atomic] # https://crates.io/crates/portable-atomic
version = "1.10" # ✓ https://github.com/taiki-e/portable-atomic/blob/main/CHANGELOG.md
optional = true # unsafe
default-features = false # 11 https://docs.rs/crate/portable-atomic/latest/features
# https://docs.rs/portable-atomic/1.10.0/portable_atomic/#optional-features
features = ["fallback", "float"]
# feature-gated: serde
# feature-maybe: require-cas
[dependencies.pyo3] # https://crates.io/crates/pyo3
version = "0.23.4" # ✓ https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md
optional = true # unsafe
default-features = false # 35 https://docs.rs/crate/pyo3/latest/features
features = [] # https://docs.rs/pyo3/latest/pyo3/#feature-flags
# https://pyo3.rs/latest/features.html#features-reference
# WAIT [no_std](https://github.com/PyO3/pyo3/issues/3510)
# WAIT [minimal-versions](https://github.com/PyO3/pyo3/issues/4877)
[dependencies.rand_core] # https://crates.io/crates/rand_core
version = "0.9" # ✓ https://github.com/rust-random/rand/blob/master/rand_core/CHANGELOG.md
optional = true # safe
default-features = false # 5 https://docs.rs/crate/rand_core/latest/features
# NOTE: depends on syn, via zerocopy
[dependencies.rayon] # https://crates.io/crates/rayon
version = "1.10" # ✗ https://github.com/rayon-rs/rayon/commits/main/
optional = true # unsafe
default-features = false # 1 https://docs.rs/crate/rayon/latest/features
[dependencies.raw-cpuid] # https://crates.io/crates/raw-cpuid
version = "11.2" # ✓ https://github.com/gz/rust-cpuid/blob/master/CHANGELOG.md
optional = true # unsafe
default-features = false # 9 https://docs.rs/crate/raw-cpuid/latest/features
[dependencies.regex-lite] # https://crates.io/crates/regex-lite
version = "0.1" # ✗ https://github.com/rust-lang/regex/commits/master/regex-lite
optional = true # safe
default-features = false # 2 https://docs.rs/crate/rayon/latest/features
features = ["string"]
# WAIT: [no_std](https://github.com/rust-lang/regex/issues/1122)
[dependencies.ring] # https://crates.io/crates/ring
version = "0.17.8" # ✗ https://github.com/briansmith/ring/commits/main/
optional = true # unsafe
default-features = false # 10 https://docs.rs/crate/ring/latest/features
[dependencies.rkyv] # https://crates.io/crates/rkyv
version = "0.8.10" # ✓ https://github.com/rkyv/rkyv/releases
optional = true # unsafe
default-features = false # 23 https://docs.rs/crate/rkyv/latest/features
features = ["bytecheck"] # https://docs.rs/rkyv/latest/rkyv/#features
# *aligned|unaligned, big_endian|*little_endian, pointer_width[16|*32|64]
# MAYBE: https://crates.io/crates/rkyv_dyn
[dependencies.rodio] # https://crates.io/crates/rodio
version = "0.20.1" # ✓ https://github.com/RustAudio/rodio/blob/master/CHANGELOG.md
optional = true # unsafe (unsafe dependencies)
default-features = false # 26 https://docs.rs/crate/rodio/latest/features
# features = ["claxon", "flac", "hound", "lewton", "mp3", "vorbis", "wav"] # IMPROVE: feature-gate
# DONE [minimal-versions](https://github.com/diwic/alsa-sys/issues/14) WAIT alsa-rs
# WAIT [new updated release](https://github.com/diwic/alsa-rs/)
# WAIT: [minimal-versions](https://github.com/rust-num/num-rational/issues/133)
# INSTALL: libasound2-dev
[dependencies.rustix] # https://crates.io/crates/rustix
version = "0.38.40" # ✓ https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md
optional = true # unsafe
default-features = false # 39 https://docs.rs/crate/rustix/latest/features
features = [
"event", "fs", "io_uring", "mm", "mount", "net", "param", "pipe",
"procfs", "pty", "runtime", "shm", "stdio", "system", "termios",
]
# feature-gated:IMPROVE: process, rand, thread, time,
[dependencies.safe_arch] # https://crates.io/crates/safe_arch
version = "0.7.4" # ✗ https://github.com/Lokathor/safe_arch/commits/main/
optional = true # unsafe
default-features = false # 2 https://docs.rs/crate/safe_arch/latest/features
[dependencies.sdl2] # https://crates.io/crates/sdl2
version = "0.37.0" # ✓ https://github.com/Rust-SDL2/rust-sdl2/blob/HEAD/changelog.md
optional = true # unsafe
default-features = false # 15 https://docs.rs/crate/sdl2/latest/features
# features = [] # https://crates.io/crates/sdl2#user-content-available-rust-features
# feature-gated: image, gfx, mixer, ttf
# INSTALL: libsdl2-dev libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev
[dependencies.sdl3] # https://crates.io/crates/sdl3
version = "0.14.4" # ✗ https://github.com/vhspace/sdl3-rs/commits/master/
optional = true # unsafe
default-features = false # 15 https://docs.rs/crate/sdl3/latest/features
features = ["build-from-source"] #
# feature-gated: gfx
[dependencies.serde] # https://crates.io/crates/serde
version = "1.0" # ✗ https://github.com/serde-rs/serde/releases
optional = true # unsafe
default-features = false # 7 https://docs.rs/crate/serde/latest/features
# WAIT [Const generics support](https://github.com/serde-rs/serde/issues/1937)
[dependencies.stringzilla] # https://crates.io/crates/stringzilla
version = "3.11" # ✗ https://github.com/ashvardanian/StringZilla/releases
optional = true # unsafe
default-features = false # 0 https://docs.rs/crate/stringzilla/latest/features
# WAIT [fix msvc cross-compile](https://github.com/ashvardanian/StringZilla/pull/169)
# WAIT [fix cmake code](https://github.com/ashvardanian/StringZilla/pull/85)
[dependencies.symphonia] # https://crates.io/crates/symphonia
version = "0.5.4" # ✓ https://github.com/pdeljanov/Symphonia/releases
optional = true # safe
default-features = false # 36 https://docs.rs/crate/symphonia/latest/features
features = [] # adpcm, flac, mkv, ogg, pcm, vorbis, wav, symphonia-[bundle|codec|format]*, opt-simd
# IMPROVE: feature-gate
[dependencies.sysinfo] # https://crates.io/crates/sysinfo
version = "0.33" # ✓ https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md
optional = true # unsafe
default-features = false # 16 https://docs.rs/crate/sysinfo/latest/features
features = ["component", "disk", "network", "system", "user"] # IMPROVE: feature-gate
[dependencies.tinyaudio] # https://crates.io/crates/tinyaudio
version = "1.1" # ✓ https://github.com/mrDIMAS/tinyaudio/blob/main/CHANGELOG.md
optional = true # unsafe
default-features = false # 0 https://docs.rs/crate/tinyaudio/latest/features
# INSTALL: libasound2-dev
[dependencies.toml_edit] # https://crates.io/crates/toml_edit
version = "0.22" # ✓ https://github.com/toml-rs/toml/blob/main/crates/toml_edit/CHANGELOG.md
optional = true # unsafe
default-features = false # 6 https://docs.rs/crate/toml_edit/latest/features
features = ["display"] #
# feature-gated: parse, serde
# WAIT: [Dotted key ordering](https://github.com/toml-rs/toml/issues/163)
[dependencies.tokio] # https://crates.io/crates/tokio
version = "1.43" # ✓ https://github.com/tokio-rs/tokio/blob/master/tokio/CHANGELOG.md
optional = true # unsafe
default-features = false # 23 https://docs.rs/crate/tokio/latest/features
features = [] # https://docs.rs/tokio/#feature-flags
# WAIT [no-std version](https://github.com/tokio-rs/tokio/issues/3544)
[dependencies.tracing] # https://crates.io/crates/tracing
version = "0.1.41" # ✗ https://github.com/tokio-rs/tracing/releases
optional = true # unsafe
default-features = false # 20 https://docs.rs/crate/tracing/latest/features
features = [] # https://docs.rs/tracing/#crate-feature-flags
[dependencies.unicode-segmentation] # https://crates.io/crates/unicode-segmentation
version = "1.12" # ✓ https://github.com/unicode-rs/unicode-segmentation?tab=readme-ov-file#change-log
optional = true # safe
default-features = false # 1 https://docs.rs/crate/unicode-segmentation/latest/features
[dependencies.unicode-width] # https://crates.io/crates/unicode-width
version = "0.2" # ✓ https://github.com/unicode-rs/unicode-width?tab=readme-ov-file#changelog
optional = true # safe
default-features = false # 7 https://docs.rs/crate/unicode-width/latest/features
# features = ["cjk"]
[dependencies.ureq] # https://crates.io/crates/ureq
version = "3.0.3" # ✓ https://github.com/algesten/ureq/blob/main/CHANGELOG.md
optional = true # safe
default-features = false # 12 https://docs.rs/crate/ureq/latest/features
# features = []
# gzip, json, rustls, rustls-no-provider,
# WAIT: [wasm,no_std](https://github.com/algesten/ureq/issues/667)
[dependencies.wasm-bindgen] # https://crates.io/crates/wasm-bindgen
version = "0.2.96" # ✓ https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md
optional = true # unsafe
default-features = false # 10 https://docs.rs/crate/wasm-bindgen/latest/features
[dependencies.web-sys] # https://crates.io/crates/web-sys
version = "0.3.73" # ✗ https://github.com/rustwasm/wasm-bindgen/commits/main/crates/web-sys
optional = true # unsafe (unsafe dependencies)
default-features = false # 1657 https://docs.rs/crate/web-sys/latest/features
[dependencies.wide] # https://crates.io/crates/wide
version = "0.7.32" # ✗ https://github.com/Lokathor/wide/commits/main/
optional = true # unsafe
default-features = false # 3 https://docs.rs/crate/wide/latest/features
[dependencies.winnow] # https://crates.io/crates/winnow
version = "0.7" # ✓ https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md
optional = true # ±safe (very little unsafe)
default-features = false # 7 https://docs.rs/crate/winnow/latest/features
[dev-dependencies]
# Used for benchmarks, examples and tests. They inherit from [dependencies].
# ------------------------------------------------------------------------------
devela = { path = ".", features = ["all"] }
[build-dependencies]
# Used for the build scripts. They do not inherit from [dependencies].
# ------------------------------------------------------------------------------
# patches
# ==============================================================================
# https://doc.rust-lang.org/cargo/reference/overriding-dependencies.html#the-patch-section
[patch.crates-io]
devela = { path = './' }
# profiles
# ==============================================================================
# https://doc.rust-lang.org/cargo/reference/profiles.html
# https://doc.rust-lang.org/stable/rustc/codegen-options/
# https://nnethercote.github.io/perf-book/build-configuration.html
# [profile.dev]
# codegen-backend = "cranelift"
# [profile.dev.package."*"]
# codegen-backend = "llvm"
# opt-level = 3
[profile.dev-lto]
inherits = "dev"
lto = "thin" # false, thin, fat, off
[profile.release-lto]
inherits = "release"
lto = "thin"
[package.metadata.docs.rs]
# ==============================================================================
# https://docs.rs/about/metadata
# https://github.com/rust-lang/crates-build-env/blob/master/linux/packages.txt
#
# Maximum build limits (https://docs.rs/crate/devela/latest/builds)
# 6.44 GB RAM, 15 minutes, 102.4 kB log, no-network, 10 targets.
no-default-features = true
features = ["_docsrs"]
default-target = "x86_64-unknown-linux-gnu"
rustdoc-args = [
"--generate-link-to-definition",
"--html-in-header", "./config/rustdoc-header.html",
]