blogdb/Cargo.toml

16 lines
432 B
TOML

[package]
name = "blogdb"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.89"
argon2 = { version = "0.5.3", features = ["std"] }
dotenvy = "0.15.7"
infer = "0.16.0"
mime_guess = "2.0.5"
rand = "0.8.5"
rand_chacha = { version = "0.3.1", features = ["std"] }
sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio", "macros"] }
tokio = { version = "1.40.0", features = ["macros", "rt", "rt-multi-thread"] }