From ce52a944e671ce8699494d7bef188d7c1f6e3c30 Mon Sep 17 00:00:00 2001 From: Myrddin Dundragon Date: Sat, 6 Sep 2025 16:12:36 -0400 Subject: [PATCH] Forgot to make the components use public. --- bard/Cargo.toml | 2 +- bard/src/lib.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bard/Cargo.toml b/bard/Cargo.toml index 1a17f8d..cb26933 100644 --- a/bard/Cargo.toml +++ b/bard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bard" -version = "0.0.4" +version = "0.0.5" edition = "2024" description = "Dioxus components that will display a Tavern blogging system Blog." repository = "/CyberMages/tavern" diff --git a/bard/src/lib.rs b/bard/src/lib.rs index 200a61e..c3c4229 100644 --- a/bard/src/lib.rs +++ b/bard/src/lib.rs @@ -10,7 +10,6 @@ mod server; pub use crate::info::{get_name, get_version}; -#[cfg(not(feature = "server"))] pub use crate::components::*; #[cfg(feature = "server")]