mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
Rollup merge of #93431 - lqd:remove-jemallocator, r=Mark-Simulacrum
remove unused `jemallocator` crate When it was noticed that the rustc binary wasn't actually using jemalloc via `#[global_allocator]` and that was removed, the dependency remained. Tests pass locally with a `jemalloc = true` build, but I'll trigger a try build to ensure I haven't missed an edge-case somewhere. r? ```@ghost``` until that completes
This commit is contained in:
commit
c866ae5e93
11
Cargo.lock
11
Cargo.lock
@ -3319,7 +3319,6 @@ dependencies = [
|
|||||||
"rustc_codegen_ssa",
|
"rustc_codegen_ssa",
|
||||||
"rustc_driver",
|
"rustc_driver",
|
||||||
"tikv-jemalloc-sys",
|
"tikv-jemalloc-sys",
|
||||||
"tikv-jemallocator",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -5164,16 +5163,6 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "tikv-jemallocator"
|
|
||||||
version = "0.4.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "3c14a5a604eb8715bc5785018a37d00739b180bcf609916ddf4393d33d49ccdf"
|
|
||||||
dependencies = [
|
|
||||||
"libc",
|
|
||||||
"tikv-jemalloc-sys",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "time"
|
name = "time"
|
||||||
version = "0.1.43"
|
version = "0.1.43"
|
||||||
|
@ -15,11 +15,7 @@ version = '0.4.0'
|
|||||||
optional = true
|
optional = true
|
||||||
features = ['unprefixed_malloc_on_supported_platforms']
|
features = ['unprefixed_malloc_on_supported_platforms']
|
||||||
|
|
||||||
[dependencies.tikv-jemallocator]
|
|
||||||
version = '0.4.0'
|
|
||||||
optional = true
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
jemalloc = ['tikv-jemalloc-sys', 'tikv-jemallocator']
|
jemalloc = ['tikv-jemalloc-sys']
|
||||||
llvm = ['rustc_driver/llvm']
|
llvm = ['rustc_driver/llvm']
|
||||||
max_level_info = ['rustc_driver/max_level_info']
|
max_level_info = ['rustc_driver/max_level_info']
|
||||||
|
Loading…
Reference in New Issue
Block a user