File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ doctest = false
20
20
custom_derive = " 0.1"
21
21
enum_derive = " 0.1"
22
22
libc = " 0.2"
23
- jemalloc-sys = {version = " 0.3.2" , features = [" disable_initial_exec_tls" ] }
24
- mimalloc-sys = " 0.1.6"
25
- hoard-sys = " 0.1.0"
23
+ jemalloc-sys = {version = " 0.3.2" , features = [" disable_initial_exec_tls" ], optional = true }
24
+ mimalloc-sys = { version = " 0.1.6" , optional = true }
25
+ hoard-sys = { version = " 0.1.0" , optional = true }
26
26
lazy_static = " 1.1"
27
27
log = {version = " 0.4" , features = [" max_level_trace" , " release_max_level_off" ] }
28
28
crossbeam-deque = " 0.6"
@@ -76,9 +76,9 @@ side_gc_header = []
76
76
# Group:malloc
77
77
# only one of the following features should be enabled, or none to use the default malloc from libc
78
78
# this does not replace the global Rust allocator, but provides these libraries for GC implementation
79
- malloc_mimalloc = []
80
- malloc_jemalloc = []
81
- malloc_hoard = []
79
+ malloc_mimalloc = [" mimalloc-sys " ]
80
+ malloc_jemalloc = [" jemalloc-sys " ]
81
+ malloc_hoard = [" hoard-sys " ]
82
82
83
83
# If there are more groups, they should be inserted above this line
84
84
# Group:end
You can’t perform that action at this time.
0 commit comments