auth: move auth crate to crates folder

This commit is contained in:
Simon Broeng Jensen
2025-02-03 23:09:54 +01:00
committed by nitnelave
parent dd0ba5975e
commit b5e87c7226
9 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,8 +1,8 @@
[workspace]
members = [
"crates/auth",
"crates/domain",
"server",
"auth",
"app",
"migration-tool",
"set-password",
+1 -1
View File
@@ -57,7 +57,7 @@ features = [
]
[dependencies.lldap_auth]
path = "../auth"
path = "../crates/auth"
features = [ "opaque_client" ]
[dependencies.lldap_validation]
+1 -1
View File
@@ -36,7 +36,7 @@ default-features = false
version = "0.24"
[dependencies.lldap_auth]
path = "../../auth"
path = "../auth"
features = ["opaque_server", "opaque_client", "sea_orm"]
[dependencies.sea-orm]
+1 -1
View File
@@ -18,7 +18,7 @@ serde_json = "1"
smallvec = "*"
[dependencies.lldap_auth]
path = "../auth"
path = "../crates/auth"
features = ["opaque_client"]
[dependencies.graphql_client]
+1 -1
View File
@@ -81,7 +81,7 @@ default-features = false
version = "0.10.1"
[dependencies.lldap_auth]
path = "../auth"
path = "../crates/auth"
features = ["opaque_server", "opaque_client", "sea_orm"]
[dependencies.lldap_domain]
+1 -1
View File
@@ -21,7 +21,7 @@ features = ["std", "color", "suggestions", "derive", "env"]
version = "4"
[dependencies.lldap_auth]
path = "../auth"
path = "../crates/auth"
features = ["opaque_client"]
[dependencies.reqwest]