Make http crate non-optional

This commit is contained in:
Ethan Girouard 2024-03-01 15:02:32 -05:00
parent 5aaf602e2c
commit acf6d3fc05
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146

View File

@ -12,7 +12,7 @@ actix-files = { version = "0.6", optional = true }
actix-web = { version = "4", optional = true, features = ["macros"] }
console_error_panic_hook = "0.1"
cfg-if = "1"
http = { version = "0.2", optional = true }
http = "0.2"
leptos = { version = "0.5", features = ["nightly"] }
leptos_meta = { version = "0.5", features = ["nightly"] }
leptos_actix = { version = "0.5", optional = true }