diff --git a/Cargo.lock b/Cargo.lock index 103a6e8..c9e8cb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1505,6 +1505,7 @@ dependencies = [ "diesel", "dotenv", "http", + "lazy_static", "leptos", "leptos_actix", "leptos_icons", diff --git a/Cargo.toml b/Cargo.toml index a1cf14e..fc46eda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,6 +25,7 @@ leptos_icons = { version = "0.1.0", default_features = false, features = [ ] } dotenv = { version = "0.15.0", optional = true } diesel = { version = "2.1.4", features = ["postgres", "r2d2"], optional = true } +lazy_static = { version = "1.4.0", optional = true } [features] csr = ["leptos/csr", "leptos_meta/csr", "leptos_router/csr"] @@ -38,6 +39,7 @@ ssr = [ "leptos_router/ssr", "dotenv", "diesel", + "lazy_static", ] # Defines a size-optimized profile for the WASM bundle in release mode