From 51593a882b51e200a28b63d041bc02d5dcf83338 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 30 Sep 2021 20:26:11 +0000 Subject: [PATCH] Properly enable unprefixed_malloc_on_supported_platforms in tikv-jemallocator (#20351) (#20354) Trivial typo fix. Fixes: 4bf6d0c4d7f9 ("adds unprefixed_malloc_on_supported_platforms to jemalloc (#20317)") (cherry picked from commit 8ae88632cb7842b7182da12ca4888a28248e9bf8) Co-authored-by: Ivan Mironov --- validator/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator/Cargo.toml b/validator/Cargo.toml index bbf1f9a7dd..f0c95d3be6 100644 --- a/validator/Cargo.toml +++ b/validator/Cargo.toml @@ -51,7 +51,7 @@ solana-vote-program = { path = "../programs/vote", version = "=1.7.15" } symlink = "0.1.0" [target.'cfg(not(target_env = "msvc"))'.dependencies] -jemallocator = {package = "tikv-jemallocator", version = "0.4.1", feautres = ["unprefixed_malloc_on_supported_platforms"]} +jemallocator = {package = "tikv-jemallocator", version = "0.4.1", features = ["unprefixed_malloc_on_supported_platforms"]} [target."cfg(unix)".dependencies] libc = "0.2.81"