mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2026-02-11 01:55:40 +00:00
auth and migration util
This commit is contained in:
22
Cargo.toml
22
Cargo.toml
@@ -3,14 +3,26 @@ name = "guard"
|
||||
version = "0.1.0"
|
||||
authors = ["realaravinth <realaravinth@batsense.net>"]
|
||||
edition = "2018"
|
||||
default-run = "guard"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[[bin]]
|
||||
name = "guard"
|
||||
path = "./src/main.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "tests-migrate"
|
||||
path = "./src/tests-migrate.rs"
|
||||
|
||||
|
||||
|
||||
[dependencies]
|
||||
actix-web = "3"
|
||||
actix = "0.10"
|
||||
|
||||
sqlx = { version = "0.4.0", features = [ "runtime-actix-rustls", "postgres" ] }
|
||||
argon2-creds = { version = "0.2", git = "https://github.com/realaravinth/argon2-creds" }
|
||||
argon2-creds = { version = "0.2", git = "https://github.com/realaravinth/argon2-creds", tag = "0.2.0" }
|
||||
|
||||
config = "0.10"
|
||||
validator = "0.12"
|
||||
@@ -23,10 +35,16 @@ serde_json = "1"
|
||||
|
||||
url = "2.2"
|
||||
|
||||
pretty_env_logger = "0.3"
|
||||
pretty_env_logger = "0.4"
|
||||
log = "0.4"
|
||||
|
||||
lazy_static = "1.4"
|
||||
|
||||
actix-identity = "0.3"
|
||||
actix-http = "2.2"
|
||||
|
||||
m_captcha = { version = "0.1.0", git = "https://github.com/mCaptcha/mCaptcha", tag = "0.1.0" }
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
actix-rt = "1"
|
||||
|
||||
Reference in New Issue
Block a user