You've already forked AstralRinth
forked from didirus/AstralRinth
Initial Auth Impl + More Caching (#647)
* Port redis to staging * redis cache on staging * add back legacy auth callback * Begin work on new auth flows * Finish all auth flows * Finish base session authentication * run prep + fix clippy * make compilation work
This commit is contained in:
55
Cargo.toml
55
Cargo.toml
@@ -12,63 +12,68 @@ path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
actix = "0.13.0"
|
||||
actix-web = "4.3.0"
|
||||
actix-web = "4.3.1"
|
||||
actix-rt = "2.8.0"
|
||||
actix-multipart = "0.6.0"
|
||||
actix-cors = "0.6.4"
|
||||
|
||||
tokio = { version = "1.25.0", features = ["sync"] }
|
||||
tokio-stream = "0.1.11"
|
||||
tokio = { version = "1.29.1", features = ["sync"] }
|
||||
tokio-stream = "0.1.14"
|
||||
|
||||
futures = "0.3.26"
|
||||
futures = "0.3.28"
|
||||
futures-timer = "3.0.2"
|
||||
async-trait = "0.1.64"
|
||||
async-trait = "0.1.70"
|
||||
dashmap = "5.4.0"
|
||||
lazy_static = "1.4.0"
|
||||
|
||||
meilisearch-sdk = "0.22.0"
|
||||
rust-s3 = "0.32.3"
|
||||
reqwest = { version = "0.11.14", features = ["json", "multipart"] }
|
||||
rust-s3 = "0.33.0"
|
||||
reqwest = { version = "0.11.18", features = ["json", "multipart"] }
|
||||
|
||||
serde_json = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_with = "2.2.0"
|
||||
chrono = { version = "0.4.23", features = ["serde"]}
|
||||
serde_with = "3.0.0"
|
||||
chrono = { version = "0.4.26", features = ["serde"]}
|
||||
yaserde = "0.8.0"
|
||||
yaserde_derive = "0.8.0"
|
||||
xml-rs = "0.8.4"
|
||||
xml-rs = "0.8.15"
|
||||
|
||||
rand = "0.8.5"
|
||||
rand_chacha = "0.3.1"
|
||||
bytes = "1.4.0"
|
||||
base64 = "0.21.0"
|
||||
base64 = "0.21.2"
|
||||
sha1 = { version = "0.6.1", features = ["std"] }
|
||||
sha2 = "0.9.9"
|
||||
hmac = "0.11.0"
|
||||
bitflags = "1.3.2"
|
||||
hex = "0.4.3"
|
||||
|
||||
url = "2.3.1"
|
||||
url = "2.4.0"
|
||||
urlencoding = "2.1.2"
|
||||
|
||||
zip = "0.6.4"
|
||||
zip = "0.6.6"
|
||||
|
||||
itertools = "0.10.5"
|
||||
itertools = "0.11.0"
|
||||
|
||||
validator = { version = "0.16.0", features = ["derive", "phone"] }
|
||||
regex = "1.7.1"
|
||||
validator = { version = "0.16.1", features = ["derive", "phone"] }
|
||||
regex = "1.8.4"
|
||||
censor = "0.3.0"
|
||||
spdx = { version = "0.10.0", features = ["text"] }
|
||||
spdx = { version = "0.10.1", features = ["text"] }
|
||||
|
||||
dotenvy = "0.15.6"
|
||||
log = "0.4.17"
|
||||
dotenvy = "0.15.7"
|
||||
log = "0.4.19"
|
||||
env_logger = "0.10.0"
|
||||
thiserror = "1.0.38"
|
||||
thiserror = "1.0.41"
|
||||
|
||||
sqlx = { version = "0.6.2", features = ["runtime-actix-rustls", "postgres", "chrono", "offline", "macros", "migrate", "decimal", "json"] }
|
||||
rust_decimal = { version = "1.28.1", features = ["serde-with-float", "serde-with-str"] }
|
||||
sqlx = { version = "0.6.3", features = ["offline", "runtime-tokio-rustls", "postgres", "chrono", "macros", "migrate", "decimal", "json"] }
|
||||
rust_decimal = { version = "1.30.0", features = ["serde-with-float", "serde-with-str"] }
|
||||
redis = { version = "0.23.0", features = ["tokio-comp", "ahash", "r2d2"]}
|
||||
deadpool-redis = "0.12.0"
|
||||
|
||||
sentry = { version = "0.30.0", features = ["profiling"] }
|
||||
sentry-actix = "0.30.0"
|
||||
sentry = { version = "0.31.5", features = ["profiling"] }
|
||||
sentry-actix = "0.31.5"
|
||||
|
||||
image = "0.24.5"
|
||||
image = "0.24.6"
|
||||
color-thief = "0.2.2"
|
||||
|
||||
woothee = "0.13.0"
|
||||
Reference in New Issue
Block a user