Fixed a missed warning and bumped to version 0.2.1

This commit is contained in:
2025-08-29 21:08:04 -04:00
parent 5768053d0c
commit 9fd1c2d02d
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "tavern"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
description = "A blogging system that will allow you to write your blog in Markdown and then display it in HTML using Dioxus."
repository = "/CyberMages/tavern"

View File

@ -7,7 +7,7 @@ use sqlx::{Error, Result};
#[cfg(not(feature = "publisher"))]
use sqlx::Row;
use crate::adventurer::{Adventurer, Legend};
use crate::adventurer::Adventurer;
use crate::tale::Tale;
#[cfg(feature = "publisher")]
@ -15,6 +15,8 @@ use crate::converter::Converter;
#[cfg(not(feature = "publisher"))]
use crate::tale::Lore;
#[cfg(not(feature = "publisher"))]
use crate::adventurer::Legend;