cargo: depend on the published version of lldap_auth

This commit is contained in:
Valentin Tolmer
2023-05-12 15:37:39 +02:00
parent 1377d5aed9
commit e1aa2bfb18
5 changed files with 27 additions and 8 deletions
Generated
+23 -4
View File
@@ -2435,7 +2435,7 @@ dependencies = [
"ldap3", "ldap3",
"ldap3_proto", "ldap3_proto",
"lettre", "lettre",
"lldap_auth", "lldap_auth 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log", "log",
"mockall", "mockall",
"nix", "nix",
@@ -2485,7 +2485,7 @@ dependencies = [
"image", "image",
"indexmap", "indexmap",
"jwt 0.13.0", "jwt 0.13.0",
"lldap_auth", "lldap_auth 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.8.5", "rand 0.8.5",
"serde", "serde",
"serde_json", "serde_json",
@@ -2518,6 +2518,25 @@ dependencies = [
"thiserror", "thiserror",
] ]
[[package]]
name = "lldap_auth"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17867a28e09989643401bb7849a494b328416634a335ddf7d3dabc9806ba563"
dependencies = [
"chrono",
"curve25519-dalek",
"digest 0.9.0",
"generic-array",
"getrandom 0.2.8",
"opaque-ke",
"rand 0.8.5",
"rust-argon2",
"serde",
"sha2 0.9.9",
"thiserror",
]
[[package]] [[package]]
name = "lldap_migration_tool" name = "lldap_migration_tool"
version = "0.4.2" version = "0.4.2"
@@ -2526,7 +2545,7 @@ dependencies = [
"base64 0.13.1", "base64 0.13.1",
"graphql_client 0.11.0", "graphql_client 0.11.0",
"ldap3", "ldap3",
"lldap_auth", "lldap_auth 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.8.5", "rand 0.8.5",
"requestty", "requestty",
"reqwest", "reqwest",
@@ -2541,7 +2560,7 @@ version = "0.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap", "clap",
"lldap_auth", "lldap_auth 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.8.5", "rand 0.8.5",
"reqwest", "reqwest",
"serde", "serde",
+1 -1
View File
@@ -53,7 +53,7 @@ features = [
] ]
[dependencies.lldap_auth] [dependencies.lldap_auth]
path = "../auth" version = "0.3"
features = [ "opaque_client" ] features = [ "opaque_client" ]
[dependencies.image] [dependencies.image]
+1 -1
View File
@@ -18,7 +18,7 @@ serde_json = "1"
smallvec = "1" smallvec = "1"
[dependencies.lldap_auth] [dependencies.lldap_auth]
path = "../auth" version = "0.3"
features = ["opaque_client"] features = ["opaque_client"]
[dependencies.graphql_client] [dependencies.graphql_client]
+1 -1
View File
@@ -77,7 +77,7 @@ default-features = false
version = "0.10.1" version = "0.10.1"
[dependencies.lldap_auth] [dependencies.lldap_auth]
path = "../auth" version = "0.3"
[dependencies.opaque-ke] [dependencies.opaque-ke]
version = "0.6" version = "0.6"
+1 -1
View File
@@ -21,7 +21,7 @@ features = ["std", "color", "suggestions", "derive", "env"]
version = "4" version = "4"
[dependencies.lldap_auth] [dependencies.lldap_auth]
path = "../auth" version = "0.3"
features = ["opaque_client"] features = ["opaque_client"]
[dependencies.reqwest] [dependencies.reqwest]