mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 16:25:55 +03:00
[PR #1152] [MERGED] Explode the server crate into many small crates #1150
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#1150
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/lldap/lldap/pull/1152
Author: @nitnelave
Created: 4/9/2025
Status: ✅ Merged
Merged: 4/9/2025
Merged by: @nitnelave
Base:
main← Head:ldap_crate📝 Commits (10+)
f1fea83server: split off ldap/search from ldap_handler96cae40server: split off do_bind from ldap_handler4f7d024server: split off password handling from ldap_handler52f3b40server: split off compare from ldap_handlerf5c2de9server: split off create_* from ldap_handlerdbd0906server: split off modify requests from ldap_handler2540fe7server: add tests for ldap modify736d168server: Add support for deleting users and groups via LDAPa56f82bserver: cleanup extra mut in ldap handler37926a4server: Move PublicSchema to the domain crate📊 Changes
63 files changed (+4864 additions, -3664 deletions)
View changed files
📝
Cargo.lock(+129 -7)➕
crates/access-control/Cargo.toml(+26 -0)📝
crates/access-control/src/lib.rs(+13 -11)📝
crates/auth/Cargo.toml(+1 -1)📝
crates/auth/src/opaque.rs(+6 -0)📝
crates/domain-model/Cargo.toml(+2 -8)📝
crates/domain/src/deserialize.rs(+1 -1)📝
crates/domain/src/lib.rs(+2 -0)📝
crates/domain/src/public_schema.rs(+1 -1)➕
crates/graphql-server/Cargo.toml(+75 -0)➕
crates/graphql-server/src/api.rs(+91 -0)📝
crates/graphql-server/src/lib.rs(+0 -0)📝
crates/graphql-server/src/mutation.rs(+16 -14)📝
crates/graphql-server/src/query.rs(+15 -16)➕
crates/ldap/Cargo.toml(+56 -0)➕
crates/ldap/src/compare.rs(+240 -0)📝
crates/ldap/src/core/error.rs(+0 -0)📝
crates/ldap/src/core/group.rs(+12 -15)📝
crates/ldap/src/core/mod.rs(+0 -0)📝
crates/ldap/src/core/user.rs(+13 -14)...and 43 more files
📄 Description
This introduces many small crates, clarifying the dependencies and cleaning up the code.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.