fix: enforce min. password length

fixes #188
This commit is contained in:
Paul Makles
2022-06-21 11:06:02 +01:00
parent 4188b6d2f2
commit 47297e243f
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@@ -2505,7 +2505,7 @@ dependencies = [
[[package]]
name = "rauth"
version = "1.0.0"
source = "git+https://github.com/insertish/rauth?rev=2d8023dffd64e49535241d53567c187062c5e3e8#2d8023dffd64e49535241d53567c187062c5e3e8"
source = "git+https://github.com/insertish/rauth?rev=8a3791a461523e7da18c797b61f00a354777aacc#8a3791a461523e7da18c797b61f00a354777aacc"
dependencies = [
"async-std",
"async-trait",
@@ -2986,7 +2986,7 @@ dependencies = [
[[package]]
name = "rocket_rauth"
version = "1.0.0"
source = "git+https://github.com/insertish/rauth?rev=2d8023dffd64e49535241d53567c187062c5e3e8#2d8023dffd64e49535241d53567c187062c5e3e8"
source = "git+https://github.com/insertish/rauth?rev=8a3791a461523e7da18c797b61f00a354777aacc#8a3791a461523e7da18c797b61f00a354777aacc"
dependencies = [
"okapi",
"rauth",

View File

@@ -52,7 +52,7 @@ mobc-redis = { version = "0.7.0", default-features = false, features = ["async-s
# web
rocket = { version = "0.5.0-rc.2", default-features = false, features = ["json"] }
rocket_empty = { git = "https://github.com/insertish/rocket_empty", branch = "master" }
rocket_rauth = { git = "https://github.com/insertish/rauth", rev = "2d8023dffd64e49535241d53567c187062c5e3e8" }
rocket_rauth = { git = "https://github.com/insertish/rauth", rev = "8a3791a461523e7da18c797b61f00a354777aacc" }
# spec generation
schemars = "0.8.8"

View File

@@ -84,7 +84,7 @@ rocket_empty = { optional = true, git = "https://github.com/insertish/rocket_emp
rocket_cors = { optional = true, git = "https://github.com/lawliet89/rocket_cors", rev = "5843861a88958c16bfaa0b40f0d8910772bcd2f6" }
# rAuth
rauth = { git = "https://github.com/insertish/rauth", rev = "2d8023dffd64e49535241d53567c187062c5e3e8", features = [ "async-std-runtime" ] }
rauth = { git = "https://github.com/insertish/rauth", rev = "8a3791a461523e7da18c797b61f00a354777aacc", features = [ "async-std-runtime" ] }
# Sentry
sentry = "0.25.0"