From 8ae88632cb7842b7182da12ca4888a28248e9bf8 Mon Sep 17 00:00:00 2001 From: Ivan Mironov Date: Thu, 30 Sep 2021 23:42:15 +0500 Subject: [PATCH] Properly enable unprefixed_malloc_on_supported_platforms in tikv-jemallocator (#20351) Trivial typo fix. Fixes: 4bf6d0c4d7f9 ("adds unprefixed_malloc_on_supported_platforms to jemalloc (#20317)") --- validator/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator/Cargo.toml b/validator/Cargo.toml index 985db4174d..22a1e2a170 100644 --- a/validator/Cargo.toml +++ b/validator/Cargo.toml @@ -50,7 +50,7 @@ solana-vote-program = { path = "../programs/vote", version = "=1.8.0" } 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.103"