From 7af02947d9666c5fbb6dab88239edfd8580c544c Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Sat, 28 Jun 2025 01:01:29 +0000 Subject: [PATCH] Remove lazy_static dependency Not required after BackendState implementation --- Cargo.lock | 1 - Cargo.toml | 2 -- 2 files changed, 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df3cf99..f9be379 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2130,7 +2130,6 @@ dependencies = [ "http", "icondata", "image-convert", - "lazy_static", "leptos", "leptos-use", "leptos_axum", diff --git a/Cargo.toml b/Cargo.toml index 9518f02..1dcd7b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,6 @@ wasm-bindgen = { version = "=0.2.100", default-features = false, optional = true leptos_icons = { version = "0.6.1" } icondata = { version = "0.5.0" } diesel = { version = "2.1.4", features = ["postgres", "r2d2", "chrono"], default-features = false, optional = true } -lazy_static = { version = "1.4.0", optional = true } serde = { version = "1.0.195", features = ["derive"], default-features = false } openssl = { version = "0.10.63", optional = true } diesel_migrations = { version = "2.1.0", optional = true } @@ -80,7 +79,6 @@ ssr = [ "leptos_router/ssr", "dotenvy", "diesel", - "lazy_static", "openssl", "diesel_migrations", "pbkdf2",