From 893c411c7ff3edcdba45c1dea6e6339afc14dc45 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Thu, 16 May 2024 18:50:44 -0400 Subject: [PATCH] Disable default features in http crate --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cb8443e..7ff3e02 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] console_error_panic_hook = { version = "0.1", optional = true } cfg-if = "1" -http = "1.0" +http = { version = "1.0", default-features = false } leptos = { version = "0.6", features = ["nightly"] } leptos_meta = { version = "0.6", features = ["nightly"] } leptos_axum = { version = "0.6", optional = true }