Fixed a missed warning and bumped to version 0.2.1
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tavern"
|
name = "tavern"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "A blogging system that will allow you to write your blog in Markdown and then display it in HTML using Dioxus."
|
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"
|
repository = "/CyberMages/tavern"
|
||||||
|
|||||||
@ -7,7 +7,7 @@ use sqlx::{Error, Result};
|
|||||||
#[cfg(not(feature = "publisher"))]
|
#[cfg(not(feature = "publisher"))]
|
||||||
use sqlx::Row;
|
use sqlx::Row;
|
||||||
|
|
||||||
use crate::adventurer::{Adventurer, Legend};
|
use crate::adventurer::Adventurer;
|
||||||
use crate::tale::Tale;
|
use crate::tale::Tale;
|
||||||
|
|
||||||
#[cfg(feature = "publisher")]
|
#[cfg(feature = "publisher")]
|
||||||
@ -15,6 +15,8 @@ use crate::converter::Converter;
|
|||||||
|
|
||||||
#[cfg(not(feature = "publisher"))]
|
#[cfg(not(feature = "publisher"))]
|
||||||
use crate::tale::Lore;
|
use crate::tale::Lore;
|
||||||
|
#[cfg(not(feature = "publisher"))]
|
||||||
|
use crate::adventurer::Legend;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user