From 99f920f7bcceb1c06d92fb0e998cb7c09e21944f Mon Sep 17 00:00:00 2001 From: strawberry Date: Sat, 20 Apr 2024 00:13:21 -0400 Subject: [PATCH] use gcc by default for hardened_malloc instead Signed-off-by: strawberry --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 232a63ee..8fa08393 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -321,7 +321,7 @@ sd-notify = { version = "0.4.1", optional = true } # systemd is only availabl [target.'cfg(all(not(target_env = "msvc"), target_os = "linux"))'.dependencies] hardened_malloc-rs = { version = "0.1", optional = true, features = [ "static", - "clang", + "gcc", "light", ], default-features = false } #hardened_malloc-rs = { optional = true, features = ["static","clang","light"], path = "../hardened_malloc-rs", default-features = false }