From cdd0859c77c9341acfe1a92126c72ac064e95aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Tue, 12 Nov 2024 16:42:37 +0100 Subject: [PATCH] no_std default --- miniconf/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniconf/Cargo.toml b/miniconf/Cargo.toml index 713d56dc..c6a9edb5 100644 --- a/miniconf/Cargo.toml +++ b/miniconf/Cargo.toml @@ -23,7 +23,7 @@ postcard = { version = "1.0.8", optional = true } thiserror = { version = "2", default-features = false } [features] -default = ["derive", "std"] +default = ["derive"] json-core = ["dep:serde-json-core"] postcard = ["dep:postcard"] derive = ["dep:miniconf_derive", "serde/derive"]