2021-05-08 09:34:55 +00:00
|
|
|
[package]
|
2021-11-29 09:26:11 +00:00
|
|
|
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
2023-05-12 11:06:06 +00:00
|
|
|
description = "Authentication protocol for LLDAP"
|
2021-11-14 00:23:21 +00:00
|
|
|
edition = "2021"
|
2023-05-12 11:06:06 +00:00
|
|
|
homepage = "https://github.com/lldap/lldap"
|
|
|
|
license = "GPL-3.0-only"
|
|
|
|
name = "lldap_auth"
|
|
|
|
repository = "https://github.com/lldap/lldap"
|
2024-10-29 15:23:58 +00:00
|
|
|
version = "0.6.0"
|
2021-05-08 09:34:55 +00:00
|
|
|
|
|
|
|
[features]
|
2021-06-08 20:23:46 +00:00
|
|
|
default = ["opaque_server", "opaque_client"]
|
|
|
|
opaque_server = []
|
|
|
|
opaque_client = []
|
2021-05-08 09:34:55 +00:00
|
|
|
js = []
|
2024-01-15 22:37:42 +00:00
|
|
|
sea_orm = ["dep:sea-orm"]
|
2021-05-08 09:34:55 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-06-08 21:24:33 +00:00
|
|
|
rust-argon2 = "0.8"
|
2021-06-08 20:23:46 +00:00
|
|
|
curve25519-dalek = "3"
|
2022-03-22 19:45:59 +00:00
|
|
|
digest = "0.9"
|
2023-10-22 11:07:47 +00:00
|
|
|
generic-array = "0.14"
|
2021-06-08 20:23:46 +00:00
|
|
|
rand = "0.8"
|
2021-05-08 09:34:55 +00:00
|
|
|
serde = "*"
|
2021-06-08 20:23:46 +00:00
|
|
|
sha2 = "0.9"
|
|
|
|
thiserror = "*"
|
2021-05-09 08:10:17 +00:00
|
|
|
|
2024-09-07 21:50:08 +00:00
|
|
|
[dependencies.derive_more]
|
|
|
|
features = ["debug", "display"]
|
|
|
|
default-features = false
|
|
|
|
version = "1"
|
|
|
|
|
2021-06-15 08:12:41 +00:00
|
|
|
[dependencies.opaque-ke]
|
2024-11-02 09:28:06 +00:00
|
|
|
version = "0.7"
|
2021-06-15 08:12:41 +00:00
|
|
|
|
2021-05-14 07:15:37 +00:00
|
|
|
[dependencies.chrono]
|
|
|
|
version = "*"
|
2024-11-02 09:28:06 +00:00
|
|
|
features = ["serde"]
|
2021-05-14 07:15:37 +00:00
|
|
|
|
2024-01-15 22:37:42 +00:00
|
|
|
[dependencies.sea-orm]
|
2024-11-02 09:28:06 +00:00
|
|
|
version = "0.12"
|
2024-01-15 22:37:42 +00:00
|
|
|
default-features = false
|
|
|
|
features = ["macros"]
|
|
|
|
optional = true
|
|
|
|
|
2021-06-08 20:23:46 +00:00
|
|
|
# For WASM targets, use the JS getrandom.
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.getrandom]
|
|
|
|
version = "0.2"
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
|
|
|
|
version = "0.2"
|
2023-09-10 19:55:30 +00:00
|
|
|
features = ["js"]
|