guestbook.rs/Cargo.toml

44 lines
1.3 KiB
TOML

[package]
name = "guestbook"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# core
tracing = "0.1.39"
tracing-subscriber = "0.3.17"
thiserror = "1.0.51"
md-5 = "0.10.6"
toml = "0.8.8"
uuid = { version = "1.6.1", features = ["v4", "fast-rng"] }
chrono = { version = "0.4.31", features = ["serde"] }
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
async-trait = "0.1.73"
html-escape = "0.2.13"
clap = { version = "4.4.6", features = ["derive"] }
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread"] }
axum = "0.7.3"
# db providers
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "any"] }
# notification providers
teloxide = { version = "0.12.2", features = ["macros"], optional = true }
mail-send = { version = "0.4.6", optional = true }
tokio-rustls = { version = "0.25.0", optional = true }
# frontend
sailfish = { version = "0.8.3", optional = true }
axum-extra = "0.9.1"
[features]
default = ["mysql", "sqlite", "postgres", "telegram", "email", "web"] # all features by default
# db drivers
mysql = ["sqlx/mysql"]
sqlite = ["sqlx/sqlite"]
postgres = ["sqlx/postgres"]
# notifier providers
telegram = ["dep:teloxide"]
email = ["dep:mail-send", "dep:tokio-rustls"]
# frontend
web = ["dep:sailfish"]