guestbook.rs/Cargo.toml
alemi 0afc79934d
feat: add sql drivers with sqlx
had to compromise on a lot of stuff because sqlx 0.7+ broke the AnyDb
driver, but ehhh it works
2024-01-03 03:32:03 +01:00

39 lines
1 KiB
TOML

[package]
name = "guestbook"
version = "0.2.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.6.20"
# db providers
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "any"] }
# notification providers
teloxide = { version = "0.12.2", features = ["macros"], optional = true }
[features]
default = [
"mysql", "sqlite", "postgres",
"telegram",
]
# db drivers
mysql = ["sqlx/mysql"]
sqlite = ["sqlx/sqlite"]
postgres = ["sqlx/postgres"]
# notifier providers
telegram = ["dep:teloxide"]