feat: implement adding captcha for sqlx postgres

This commit is contained in:
realaravinth
2022-05-12 19:09:44 +05:30
parent 277d2bb9e5
commit 79ff7b9917
3 changed files with 55 additions and 3 deletions

View File

@@ -9,9 +9,10 @@ license = "AGPLv3 or later version"
authors = ["realaravinth <realaravinth@batsense.net>"]
[dependencies]
sqlx = { version = "0.5.13", features = [ "runtime-actix-rustls", "postgres", "time", "offline" ] }
db-core = {path = "../db-core"}
async-trait = "0.1.51"
db-core = {path = "../db-core"}
futures = "0.3.15"
sqlx = { version = "0.5.13", features = [ "runtime-actix-rustls", "postgres", "time", "offline" ] }
[dev-dependencies]
actix-rt = "2"