Adding components and assets.

Commiting to try the library with the target dioxus project.
This commit is contained in:
2025-09-06 15:05:58 -04:00
parent e6f3ff3c1e
commit 9679578977
10 changed files with 743 additions and 38 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "bard"
version = "0.0.2"
version = "0.0.3"
edition = "2024"
description = "Dioxus components that will display a Tavern blogging system Blog."
repository = "/CyberMages/tavern"
@ -10,8 +10,10 @@ readme = "README.md"
license = "Apache-2.0"
[dependencies]
dioxus = { version = "*", features = ["router", "fullstack"], optional = true }
tavern = { version = "0.2.4", path = "../tavern", registry = "cybermages", optional = true}
tokio = { version = "1.0", features = ["full"], optional = true }
[features]
default = ["tavern"]
server = ["tavern/database"]
default = ["tavern", "dioxus/web"]
server = ["tavern/database", "dioxus/server", "tokio"]