Skip to content

Commit 5db8276

Browse files
committed
Bump jemalloc.
Signed-off-by: Jason Volk <jason@zemos.net>
1 parent 2c0ad2a commit 5db8276

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

librocksdb-sys/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ exclude = [
2929

3030
[features]
3131
default = ["bindgen-runtime", "static"]
32-
jemalloc = ["tikv-jemalloc-sys"]
32+
jemalloc = ["jevmalloc-sys"]
3333
static = ["libz-sys?/static", "bzip2-sys?/static"]
3434
bindgen-runtime = ["bindgen/runtime"]
3535
bindgen-static = ["bindgen/static"]
@@ -51,10 +51,7 @@ bzip2-sys = { version = "0.1", default-features = false, optional = true }
5151
libc = "0.2"
5252
libz-sys = { version = "1.1", default-features = false, optional = true }
5353
lz4-sys = { version = "1.11", optional = true }
54-
tikv-jemalloc-sys = { git = "https://github.com/matrix-construct/jemallocator", rev = "03bed96afbbc898bef4d4f7d335c0519e3d1afad", features = [
55-
"unprefixed_malloc_on_supported_platforms",
56-
"background_threads_runtime_support",
57-
], optional = true }
54+
jevmalloc-sys = { git = "https://github.com/matrix-construct/jevmalloc", rev = "be5f5ddc2fc63313a60bb37e6388bcee997f0c05", optional = true }
5855
zstd-sys = { version = "2.0", features = [
5956
"zdict_builder",
6057
"experimental",

librocksdb-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ extern crate libz_sys;
2525
#[cfg(feature = "lz4")]
2626
extern crate lz4_sys;
2727
#[cfg(feature = "jemalloc")]
28-
extern crate tikv_jemalloc_sys;
28+
extern crate jevmalloc_sys;
2929
#[cfg(feature = "zstd")]
3030
extern crate zstd_sys;
3131

0 commit comments

Comments
 (0)