disable more unnecessary features in various build outputs
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
5b6279b1c5
commit
1852eeebf2
3 changed files with 115 additions and 55 deletions
|
@ -15,7 +15,19 @@
|
|||
# Options (keep sorted)
|
||||
, all_features ? false
|
||||
, default_features ? true
|
||||
, disable_features ? []
|
||||
# default list of disabled features
|
||||
, disable_features ? [
|
||||
# dont include experimental features
|
||||
"experimental"
|
||||
# jemalloc profiling/stats features are expensive and shouldn't
|
||||
# be expected on non-debug builds.
|
||||
"jemalloc_prof"
|
||||
"jemalloc_stats"
|
||||
# this is non-functional on nix for some reason
|
||||
"hardened_malloc"
|
||||
# conduwuit_mods is a development-only hot reload feature
|
||||
"conduwuit_mods"
|
||||
]
|
||||
, disable_release_max_log_level ? false
|
||||
, features ? []
|
||||
, profile ? "release"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue