Compare commits

..

6 Commits

Author SHA1 Message Date
Paul Makles
64bb171cc8 fix: remove test flag from rauth 2022-06-12 18:03:49 +01:00
Paul Makles
6de5ad15c5 chore: bump rauth 2022-06-12 17:48:12 +01:00
Paul Makles
b5ab16d66f fix: bump quark to fix is_disabled check 2022-06-12 17:07:22 +01:00
Paul Makles
b9aad6d38c chore: bump rauth 2022-06-11 20:49:19 +01:00
Paul Makles
ed5c8159e9 chore: bump rauth 2022-06-10 17:47:13 +01:00
Paul Makles
2e6e1fdd44 chore: bump quark; changes deletion period 2022-06-10 17:22:34 +01:00
3 changed files with 4 additions and 12 deletions

12
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=7a579daa6a90845fe86139edcadbd01639b330b6#7a579daa6a90845fe86139edcadbd01639b330b6"
source = "git+https://github.com/insertish/rauth?rev=7e727e2b9625b4f061b4f69a38de91e9351e266f#7e727e2b9625b4f061b4f69a38de91e9351e266f"
dependencies = [
"async-std",
"async-trait",
@@ -2986,23 +2986,15 @@ dependencies = [
[[package]]
name = "rocket_rauth"
version = "1.0.0"
source = "git+https://github.com/insertish/rauth?rev=7a579daa6a90845fe86139edcadbd01639b330b6#7a579daa6a90845fe86139edcadbd01639b330b6"
source = "git+https://github.com/insertish/rauth?rev=7e727e2b9625b4f061b4f69a38de91e9351e266f#7e727e2b9625b4f061b4f69a38de91e9351e266f"
dependencies = [
"async-std",
"base32",
"chrono",
"iso8601-timestamp",
"mongodb",
"okapi",
"rauth",
"regex",
"reqwest",
"rocket",
"rocket_empty",
"rocket_okapi",
"schemars",
"serde",
"serde_json",
]
[[package]]

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 = "7a579daa6a90845fe86139edcadbd01639b330b6" }
rocket_rauth = { git = "https://github.com/insertish/rauth", rev = "7e727e2b9625b4f061b4f69a38de91e9351e266f" }
# 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 = "7a579daa6a90845fe86139edcadbd01639b330b6", features = [ "async-std-runtime" ] }
rauth = { git = "https://github.com/insertish/rauth", rev = "7e727e2b9625b4f061b4f69a38de91e9351e266f", features = [ "async-std-runtime" ] }
# Sentry
sentry = "0.25.0"