Skip to content

Commit 677fb41

Browse files
committed
Replace jemallocator with tikv-jemallocator
`jemallocator` appears to be unmaintained and `tikv-jemallocator` is a friendly fork that has taken over basic maintenance
1 parent 104fbfb commit 677fb41

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ hex = "0.4"
6161
http = "0.2"
6262
hyper = { version = "0.14", features = ["client", "http1"] }
6363
indexmap = { version = "1.7.0", features = ["serde-1"] }
64-
jemallocator = { version = "0.3", features = ['unprefixed_malloc_on_supported_platforms', 'profiling'] }
64+
tikv-jemallocator = { version = "0.4.1", features = ['unprefixed_malloc_on_supported_platforms', 'profiling'] }
6565
lettre = { version = "0.10.0-rc.4", default-features = false, features = ["file-transport", "smtp-transport", "native-tls", "hostname", "builder"] }
6666
license-exprs = "1.6"
6767
minijinja = "0.7.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use std::str::FromStr;
2727
use std::sync::Arc;
2828

2929
use conduit_middleware::MiddlewareBuilder;
30-
use jemallocator::Jemalloc;
30+
use tikv_jemallocator::Jemalloc;
3131

3232
#[global_allocator]
3333
static ALLOC: Jemalloc = Jemalloc;

0 commit comments

Comments
 (0)