lldap/auth/Cargo.toml

53 lines
1.1 KiB
TOML
Raw Permalink Normal View History

[package]
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
description = "Authentication protocol for LLDAP"
2021-11-14 00:23:21 +00:00
edition = "2021"
homepage = "https://github.com/lldap/lldap"
license = "GPL-3.0-only"
name = "lldap_auth"
repository = "https://github.com/lldap/lldap"
2023-09-14 16:22:02 +00:00
version = "0.4.0"
[features]
2021-06-08 20:23:46 +00:00
default = ["opaque_server", "opaque_client"]
opaque_server = []
opaque_client = []
js = []
sea_orm = ["dep:sea-orm"]
[dependencies]
2021-06-08 21:24:33 +00:00
rust-argon2 = "0.8"
2021-06-08 20:23:46 +00:00
curve25519-dalek = "3"
digest = "0.9"
generic-array = "0.14"
2021-06-08 20:23:46 +00:00
rand = "0.8"
serde = "*"
2021-06-08 20:23:46 +00:00
sha2 = "0.9"
thiserror = "*"
[dependencies.derive_more]
features = ["debug", "display"]
default-features = false
version = "1"
2021-06-15 08:12:41 +00:00
[dependencies.opaque-ke]
2021-11-14 00:15:03 +00:00
version = "0.6"
2021-06-15 08:12:41 +00:00
2021-05-14 07:15:37 +00:00
[dependencies.chrono]
version = "*"
features = [ "serde" ]
[dependencies.sea-orm]
version= "0.12"
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"]