From 31ed1098064fa579ec4133deaa6821344ccfb739 Mon Sep 17 00:00:00 2001 From: luoxiao Date: Mon, 18 Sep 2023 16:59:23 +0800 Subject: [PATCH] feat: upgrade leptos_devtools to 0.0.1 --- gh-pages/Cargo.toml | 2 +- gh-pages/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gh-pages/Cargo.toml b/gh-pages/Cargo.toml index 53081b7..0018052 100644 --- a/gh-pages/Cargo.toml +++ b/gh-pages/Cargo.toml @@ -15,7 +15,7 @@ icondata = { version = "0.0.7", features = [ leptos_router = { version = "0.5.0-rc2", features = ["csr"] } indoc = "2.0.1" regex = "1.8.2" -leptos_devtools = { git = "https://github.com/luoxiaozero/leptos-devtools.git" } +leptos_devtools = "0.0.1" [features] tracing = ["leptos/tracing"] diff --git a/gh-pages/src/main.rs b/gh-pages/src/main.rs index 4679a7c..c6cffba 100644 --- a/gh-pages/src/main.rs +++ b/gh-pages/src/main.rs @@ -7,6 +7,6 @@ use leptos::*; fn main() { #[cfg(feature = "tracing")] - leptos_devtools::devtools(); + leptos_devtools::devtools!(); mount_to_body(App) }