File tree 3 files changed +3
-20
lines changed
3 files changed +3
-20
lines changed Original file line number Diff line number Diff line change @@ -15,17 +15,6 @@ dependencies = [
15
15
" rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" ,
16
16
]
17
17
18
- [[package ]]
19
- name = " alloc_jemalloc"
20
- version = " 0.0.0"
21
- dependencies = [
22
- " build_helper 0.1.0" ,
23
- " cc 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)" ,
24
- " compiler_builtins 0.0.0" ,
25
- " core 0.0.0" ,
26
- " libc 0.0.0" ,
27
- ]
28
-
29
18
[[package ]]
30
19
name = " alloc_system"
31
20
version = " 0.0.0"
@@ -2638,7 +2627,6 @@ name = "std"
2638
2627
version = " 0.0.0"
2639
2628
dependencies = [
2640
2629
" alloc 0.0.0" ,
2641
- " alloc_jemalloc 0.0.0" ,
2642
2630
" alloc_system 0.0.0" ,
2643
2631
" build_helper 0.1.0" ,
2644
2632
" cc 1.0.15 (registry+https://github.com/rust-lang/crates.io-index)" ,
Original file line number Diff line number Diff line change @@ -1182,11 +1182,7 @@ impl ToJson for Target {
1182
1182
}
1183
1183
1184
1184
fn maybe_jemalloc ( ) -> Option < String > {
1185
- if cfg ! ( feature = "jemalloc" ) {
1186
- Some ( "alloc_jemalloc" . to_string ( ) )
1187
- } else {
1188
- None
1189
- }
1185
+ None
1190
1186
}
1191
1187
1192
1188
/// Either a target triple string or a path to a JSON file.
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ crate-type = ["dylib", "rlib"]
14
14
15
15
[dependencies ]
16
16
alloc = { path = " ../liballoc" }
17
- alloc_jemalloc = { path = " ../liballoc_jemalloc" , optional = true }
18
17
alloc_system = { path = " ../liballoc_system" }
19
18
panic_unwind = { path = " ../libpanic_unwind" , optional = true }
20
19
panic_abort = { path = " ../libpanic_abort" }
@@ -44,8 +43,8 @@ build_helper = { path = "../build_helper" }
44
43
45
44
[features ]
46
45
backtrace = []
47
- debug-jemalloc = [" alloc_jemalloc/debug " ]
48
- jemalloc = [" alloc_jemalloc " ]
46
+ debug-jemalloc = []
47
+ jemalloc = []
49
48
force_alloc_system = []
50
49
panic-unwind = [" panic_unwind" ]
51
50
profiler = [" profiler_builtins" ]
You can’t perform that action at this time.
0 commit comments