You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Note that this may have overhead as well, thus instrumentations should be used stategically, only providing coarse tracing by default and adding details
36
36
## only where needed while marking them with the appropriate level.
37
-
tracing = ["gix-trace/tracing"]
37
+
tracing = ["gix-trace/tracing"]
38
38
39
39
## If enabled, detailed tracing is also emitted, which can greatly increase insights but at a cost.
40
-
tracing-detail = ["gix-trace/tracing-detail"]
40
+
tracing-detail = ["gix-trace/tracing-detail"]
41
41
42
42
## Use scoped threads and channels to parallelize common workloads on multiple objects. If enabled, it is used everywhere
43
43
## where it makes sense.
44
44
## As caches are likely to be used and instantiated per thread, more memory will be used on top of the costs for threads.
45
45
## The `threading` module will contain thread-safe primitives for shared ownership and mutation, otherwise these will be their single threaded counterparts.
46
46
## This way, single-threaded applications don't have to pay for threaded primitives.
47
47
parallel = ["dep:crossbeam-channel",
48
-
"dep:parking_lot"]
48
+
"dep:parking_lot"]
49
49
## If enabled, OnceCell will be made available for interior mutability either in sync or unsync forms.
50
50
once_cell = ["dep:once_cell"]
51
51
## Makes facilities of the `walkdir` crate partially available.
0 commit comments