mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* adding some test coverage because there was some rando panic-inducing thing * ldap constants * documenting a macro * helpful weird errors * the war on strings continues * less json more better * testing things fixing bugs * idm_domain_reset_token_key wasn't working, added a test and fixed it (we weren't testing it) * idm_domain_set_ldap_basedn - adding tests * adding testing for idm_account_credential_update_cancel_mfareg * warning of deprecation
46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[package]
|
|
name = "kanidm-ldap-sync"
|
|
description = "Kanidm Client Tools"
|
|
documentation = "https://kanidm.github.io/kanidm/stable/"
|
|
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
base64urlsafedata = { workspace = true }
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
chrono = { workspace = true }
|
|
cron = { workspace = true }
|
|
kanidm_client = { workspace = true }
|
|
kanidm_proto = { workspace = true }
|
|
kanidm_lib_file_permissions = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt", "macros", "net"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
|
|
|
|
|
|
ldap3_client = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
url = { workspace = true, features = ["serde"] }
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
|
|
# Currently only for attribute - should attribute be broken out?
|
|
kanidmd_lib = { workspace = true }
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
|
kanidm_utils_users = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
clap = { workspace = true, features = ["derive"] }
|
|
clap_complete = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
sketching = { workspace = true }
|