1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-09-03 16:50:56 +00:00

fix(build): Remove hardened_malloc from full feature set

The hardened_malloc feature conflicts with jemalloc, preventing successful
builds with the --features full flag. Commenting out hardened_malloc allows
the full profile to build correctly while maintaining all other features.
This commit is contained in:
Tom Foster 2025-08-17 13:44:32 +01:00
parent 54acd07555
commit 2a183cc5a4

View file

@ -63,7 +63,7 @@ standard = [
]
full = [
"standard",
"hardened_malloc",
# "hardened_malloc", # Conflicts with jemalloc
"jemalloc_prof",
"perf_measurements",
"tokio_console"