Forgot to make the components use public.

This commit is contained in:
2025-09-06 16:12:36 -04:00
parent 54e54f61c0
commit ce52a944e6
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "bard" name = "bard"
version = "0.0.4" version = "0.0.5"
edition = "2024" edition = "2024"
description = "Dioxus components that will display a Tavern blogging system Blog." description = "Dioxus components that will display a Tavern blogging system Blog."
repository = "/CyberMages/tavern" repository = "/CyberMages/tavern"

View File

@ -10,7 +10,6 @@ mod server;
pub use crate::info::{get_name, get_version}; pub use crate::info::{get_name, get_version};
#[cfg(not(feature = "server"))]
pub use crate::components::*; pub use crate::components::*;
#[cfg(feature = "server")] #[cfg(feature = "server")]