From 6c33fa126f404c321d323f07be12ea944f1c2312 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 29 Mar 2022 06:34:25 -0500 Subject: [PATCH] fix!: Make `serde` a non-default feature Tryin to discourage people from doing `default-features = false` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 849c3d5..da6ec9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ pre-release-replacements = [ ] [features] -default = ["unsafe", "serde"] +default = ["unsafe"] ## O(1) clone support arc = []