From 35ca220bccc14a99c8ff7734e04767e88fb56297 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 11 Nov 2022 01:23:35 -0500 Subject: [PATCH] Comment the allocator feature Prevents it from turning on with --all-features, forcing nightly. --- common/zalloc/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/zalloc/Cargo.toml b/common/zalloc/Cargo.toml index 780e6b20..db38f3e2 100644 --- a/common/zalloc/Cargo.toml +++ b/common/zalloc/Cargo.toml @@ -16,4 +16,5 @@ rustdoc-args = ["--cfg", "docsrs"] zeroize = "1.5" [features] -allocator = [] +# Commented for now as it requires nightly and we don't use nightly +# allocator = []