Skip to content

Commit 82a1a85

Browse files
committed
Bump jemalloc.
Signed-off-by: Jason Volk <jason@zemos.net>
1 parent 194c71e commit 82a1a85

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
@@ -32,7 +32,7 @@ exclude = [
3232

3333
[features]
3434
default = ["bindgen-runtime", "static"]
35-
jemalloc = ["tikv-jemalloc-sys"]
35+
jemalloc = ["jevmalloc-sys"]
3636
static = ["libz-sys?/static", "bzip2-sys?/static"]
3737
bindgen-runtime = ["bindgen/runtime"]
3838
bindgen-static = ["bindgen/static"]
@@ -62,10 +62,7 @@ bzip2-sys = { version = "0.1", default-features = false, optional = true }
6262
libc = "0.2"
6363
libz-sys = { version = "1.1", default-features = false, optional = true }
6464
lz4-sys = { version = "1.11", optional = true }
65-
tikv-jemalloc-sys = { git = "https://github.com/matrix-construct/jemallocator", rev = "03bed96afbbc898bef4d4f7d335c0519e3d1afad", features = [
66-
"unprefixed_malloc_on_supported_platforms",
67-
"background_threads_runtime_support",
68-
], optional = true }
65+
jevmalloc-sys = { git = "https://github.com/matrix-construct/jevmalloc", rev = "93795449913f65ab533b7fa482333eef63fc3ae0", optional = true }
6966
zstd-sys = { version = "2.0", features = [
7067
"zdict_builder",
7168
"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)