Make serde dependency mandatory

This commit is contained in:
Ethan Girouard 2024-01-28 15:21:50 -05:00
parent f985d036d1
commit ec9b515484
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146

View File

@ -27,7 +27,7 @@ leptos_icons = { version = "0.1.0", default_features = false, features = [
dotenv = { version = "0.15.0", optional = true } dotenv = { version = "0.15.0", optional = true }
diesel = { version = "2.1.4", features = ["postgres", "r2d2"], optional = true } diesel = { version = "2.1.4", features = ["postgres", "r2d2"], optional = true }
lazy_static = { version = "1.4.0", optional = true } lazy_static = { version = "1.4.0", optional = true }
serde = { versions = "1.0.195", features = ["derive"], optional = true } serde = { versions = "1.0.195", features = ["derive"] }
openssl = { version = "0.10.63", optional = true } openssl = { version = "0.10.63", optional = true }
[features] [features]
@ -43,7 +43,6 @@ ssr = [
"dotenv", "dotenv",
"diesel", "diesel",
"lazy_static", "lazy_static",
"serde",
"openssl", "openssl",
] ]