You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-08-09 04:22:45 +03:00
Move the Encrypter from the config to the keystore
This commit is contained in:
@@ -29,11 +29,10 @@ tower = { version = "0.4.13", features = ["util"] }
|
||||
tracing = "0.1.36"
|
||||
url = "2.2.2"
|
||||
|
||||
# TODO: remove the config dependency by moving out the encrypter
|
||||
mas-config = { path = "../config" }
|
||||
mas-templates = { path = "../templates" }
|
||||
mas-storage = { path = "../storage" }
|
||||
mas-data-model = { path = "../data-model" }
|
||||
mas-jose = { path = "../jose" }
|
||||
mas-iana = { path = "../iana" }
|
||||
mas-http = { path = "../http", features = ["client"] }
|
||||
mas-iana = { path = "../iana" }
|
||||
mas-jose = { path = "../jose" }
|
||||
mas-keystore = { path = "../keystore" }
|
||||
mas-storage = { path = "../storage" }
|
||||
mas-templates = { path = "../templates" }
|
||||
|
@@ -26,7 +26,7 @@ use axum::{
|
||||
};
|
||||
use headers::{authorization::Basic, Authorization};
|
||||
use http::StatusCode;
|
||||
use mas_config::Encrypter;
|
||||
use mas_keystore::Encrypter;
|
||||
use mas_data_model::{Client, JwksOrJwksUri, StorageBackend};
|
||||
use mas_http::HttpServiceExt;
|
||||
use mas_iana::oauth::OAuthClientAuthenticationMethod;
|
||||
|
Reference in New Issue
Block a user