Files
tavernworks/Cargo.toml

27 lines
842 B
TOML
Raw Normal View History

2025-08-20 16:55:56 -04:00
[package]
name = "tavern"
version = "0.0.0"
edition = "2021"
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"
authors = ["CyberMages LLC <Software@CyberMagesLLC.com>", "Jason Travis Smith <Myrddin@CyberMages.tech>"]
readme = "README.md"
license = "Apache-2.0"
[dependencies]
chrono = { version = "0.4.41", features = ["serde"] }
pulldown-cmark = "0.13.0"
rusqlite = "0.37.0"
serde = { version = "1.0.219", features = ["derive"] }
toml = "0.9.5"
# When switching to PostgreSQL use feature: "sqlx-postgres"
#sea-orm = { version = "1.1.14", features = [ "sqlx-sqlite",
# "runtime-tokio-native-tls",
# "macros" ] }
[features]
publisher = []