mirror of
https://github.com/lldap/lldap.git
synced 2026-07-25 17:58:44 +00:00
40121b80b7
Move duplicated Cargo dependencies to the root workspace manifest, switch member crates to workspace dependencies, and align non-conflicting shared feature sets at the workspace level. Upgrade a number of shared dependencies while consolidating versions across the workspace. This also consolidates the ldap3 dependency in response to GHSA-qcxq-75wr-5cm8: https://github.com/kanidm/ldap3/security/advisories/GHSA-qcxq-75wr-5cm8 Update frontend and migration code for dependency upgrades and clean up manifest structure.
58 lines
1.1 KiB
TOML
58 lines
1.1 KiB
TOML
[package]
|
|
name = "lldap_ldap"
|
|
version = "0.1.0"
|
|
description = "LDAP operations support"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
itertools = { workspace = true }
|
|
|
|
derive_more = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
ldap3_proto = { workspace = true }
|
|
|
|
[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_handlers]
|
|
path = "../domain-handlers"
|
|
|
|
[dependencies.lldap_domain_model]
|
|
path = "../domain-model"
|
|
|
|
[dependencies.lldap_opaque_handler]
|
|
path = "../opaque-handler"
|
|
|
|
[dev-dependencies.lldap_test_utils]
|
|
path = "../test-utils"
|
|
|
|
[dev-dependencies]
|
|
mockall = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
[dev-dependencies.lldap_domain]
|
|
path = "../domain"
|
|
features = ["test"]
|