mirror of
https://github.com/lldap/lldap.git
synced 2024-11-24 08:45:08 +00:00
e982908768
Some checks failed
Docker Static / pre_job (push) Has been cancelled
Rust / pre_job (push) Has been cancelled
Docker Static / build-ui (push) Has been cancelled
Docker Static / build-bin (aarch64-unknown-linux-musl) (push) Has been cancelled
Docker Static / build-bin (armv7-unknown-linux-musleabihf) (push) Has been cancelled
Docker Static / build-bin (x86_64-unknown-linux-musl) (push) Has been cancelled
Docker Static / LLDAP database init test (push) Has been cancelled
Docker Static / LLDAP database migration test (push) Has been cancelled
Docker Static / Build Docker image (push) Has been cancelled
Docker Static / Create release artifacts (push) Has been cancelled
Rust / cargo test (push) Has been cancelled
Rust / cargo clippy (push) Has been cancelled
Rust / cargo fmt (push) Has been cancelled
Rust / Code coverage (push) Has been cancelled
52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
[package]
|
|
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
|
description = "Authentication protocol for LLDAP"
|
|
edition = "2021"
|
|
homepage = "https://github.com/lldap/lldap"
|
|
license = "GPL-3.0-only"
|
|
name = "lldap_auth"
|
|
repository = "https://github.com/lldap/lldap"
|
|
version = "0.6.0"
|
|
|
|
[features]
|
|
default = ["opaque_server", "opaque_client"]
|
|
opaque_server = []
|
|
opaque_client = []
|
|
js = []
|
|
sea_orm = ["dep:sea-orm"]
|
|
|
|
[dependencies]
|
|
rust-argon2 = "0.8"
|
|
curve25519-dalek = "3"
|
|
digest = "0.9"
|
|
generic-array = "0.14"
|
|
rand = "0.8"
|
|
serde = "*"
|
|
sha2 = "0.9"
|
|
thiserror = "*"
|
|
|
|
[dependencies.derive_more]
|
|
features = ["debug", "display"]
|
|
default-features = false
|
|
version = "1"
|
|
|
|
[dependencies.opaque-ke]
|
|
version = "0.7"
|
|
|
|
[dependencies.chrono]
|
|
version = "*"
|
|
features = ["serde"]
|
|
|
|
[dependencies.sea-orm]
|
|
version = "0.12"
|
|
default-features = false
|
|
features = ["macros"]
|
|
optional = true
|
|
|
|
# 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"
|
|
features = ["js"]
|