mirror of
https://github.com/lldap/lldap.git
synced 2026-03-31 15:07:48 +01:00
28 lines
592 B
TOML
28 lines
592 B
TOML
[package]
|
|
name = "lldap_access_control"
|
|
version = "0.1.0"
|
|
description = "Access control wrappers for LLDAP"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
tracing = "*"
|
|
async-trait = "0.1"
|
|
|
|
[dependencies.lldap_auth]
|
|
path = "../auth"
|
|
features = ["opaque_server", "opaque_client", "sea_orm"]
|
|
|
|
[dependencies.lldap_domain]
|
|
path = "../domain"
|
|
|
|
[dependencies.lldap_domain_handlers]
|
|
path = "../domain-handlers"
|
|
|
|
[dependencies.lldap_domain_model]
|
|
path = "../domain-model"
|