mirror of
https://github.com/lldap/lldap.git
synced 2026-04-05 14:48:10 +00:00
Add a modifyTimestamp attribute to LDAP entries for users and groups, and expose pwdChangedTime for users. These attributes let clients track when an entry (or its password) was last changed. - modifyTimestamp is a server-maintained attribute that updates on any write to user or group entries, including membership changes (on the group side). - pwdChangedTime is set when a user’s password is created or changed.
75 lines
1.4 KiB
TOML
75 lines
1.4 KiB
TOML
[package]
|
|
name = "lldap_graphql_server"
|
|
version = "0.1.0"
|
|
description = "GraphQL server for LLDAP"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
juniper = "0.15"
|
|
serde_json = "1"
|
|
tracing = "*"
|
|
urlencoding = "2"
|
|
|
|
[dependencies.chrono]
|
|
features = ["serde"]
|
|
version = "*"
|
|
|
|
[dependencies.lldap_access_control]
|
|
path = "../access-control"
|
|
|
|
[dependencies.lldap_auth]
|
|
path = "../auth"
|
|
features = ["opaque_server", "opaque_client", "sea_orm"]
|
|
|
|
[dependencies.lldap_domain]
|
|
path = "../domain"
|
|
|
|
[dependencies.lldap_domain_model]
|
|
path = "../domain-model"
|
|
|
|
[dependencies.lldap_domain_handlers]
|
|
path = "../domain-handlers"
|
|
|
|
[dependencies.lldap_ldap]
|
|
path = "../ldap"
|
|
|
|
[dependencies.lldap_sql_backend_handler]
|
|
path = "../sql-backend-handler"
|
|
|
|
[dependencies.lldap_validation]
|
|
path = "../validation"
|
|
|
|
[dependencies.serde]
|
|
workspace = true
|
|
|
|
[dependencies.uuid]
|
|
features = ["v1", "v3"]
|
|
version = "1"
|
|
|
|
[dev-dependencies]
|
|
mockall = "0.11.4"
|
|
pretty_assertions = "1"
|
|
|
|
#[dev-dependencies.lldap_auth]
|
|
#path = "../auth"
|
|
#features = ["test"]
|
|
#
|
|
#[dev-dependencies.lldap_opaque_handler]
|
|
#path = "../opaque-handler"
|
|
#features = ["test"]
|
|
|
|
[dev-dependencies.lldap_test_utils]
|
|
path = "../test-utils"
|
|
#
|
|
#[dev-dependencies.lldap_sql_backend_handler]
|
|
#path = "../sql-backend-handler"
|
|
#features = ["test"]
|
|
|
|
[dev-dependencies.tokio]
|
|
features = ["full"]
|
|
version = "1.25" |