From f143c9c026a15aec74aa4d46bba69cc300181e63 Mon Sep 17 00:00:00 2001 From: messense Date: Tue, 26 Sep 2023 14:43:58 +0800 Subject: [PATCH] feat(leptos_config): only enable `toml` feature for the `config` dependency --- leptos_config/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leptos_config/Cargo.toml b/leptos_config/Cargo.toml index f6aca0f2dc..b098cb713d 100644 --- a/leptos_config/Cargo.toml +++ b/leptos_config/Cargo.toml @@ -9,7 +9,7 @@ description = "Configuration for the Leptos web framework." readme = "../README.md" [dependencies] -config = "0.13.3" +config = { version = "0.13.3", default-features = false, features = ["toml"] } regex = "1.7.0" serde = { version = "1.0.151", features = ["derive"] } thiserror = "1.0.38"