diff options
| author | bors <bors@rust-lang.org> | 2022-05-27 18:28:12 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-05-27 18:28:12 +0000 |
| commit | ebbcbfc236ced21d5e6a92269edb704692ff26b8 (patch) | |
| tree | cb5d8bb6964d8d71b778e1ec1b66010612d3c534 /src | |
| parent | 56fd680cf9226ab424f88d4e3b43c5e088d17f19 (diff) | |
| parent | adab1350e76dea8a8af4d062fcad518980673643 (diff) | |
| download | rust-ebbcbfc236ced21d5e6a92269edb704692ff26b8.tar.gz rust-ebbcbfc236ced21d5e6a92269edb704692ff26b8.zip | |
Auto merge of #96790 - lqd:update_jemalloc, r=Mark-Simulacrum
Update jemalloc to v5.3 Now that `jemalloc` version 5.3 has been released, this PR updates `tikv-jemalloc-sys` to the corresponding release. The crates.io publishing issue seems to have been resolved for the `jemalloc-sys` package, and version 5.3.0 is now also available under the historical name (and should become the preferred crate to be used). Therefore, this PR also switches back to using `jemalloc-sys` instead of `tikv-jemalloc-sys`.
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 61acf2de90d..8b3edfd2135 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -70,9 +70,7 @@ extern crate test; // See docs in https://github.com/rust-lang/rust/blob/master/compiler/rustc/src/main.rs // about jemalloc. #[cfg(feature = "jemalloc")] -extern crate tikv_jemalloc_sys; -#[cfg(feature = "jemalloc")] -use tikv_jemalloc_sys as jemalloc_sys; +extern crate jemalloc_sys; use std::default::Default; use std::env::{self, VarError}; |
