2023-06-13 06:26:50 +02:00
|
|
|
[package]
|
|
|
|
name = "kanidm-ldap-sync"
|
|
|
|
description = "Kanidm Client Tools"
|
|
|
|
documentation = "https://kanidm.github.io/kanidm/stable/"
|
|
|
|
|
2023-06-27 03:38:22 +02:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
2023-06-13 06:26:50 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
chrono = { workspace = true }
|
|
|
|
cron = { workspace = true }
|
|
|
|
kanidm_client = { workspace = true }
|
|
|
|
kanidm_proto = { workspace = true }
|
2023-10-08 09:39:00 +02:00
|
|
|
kanidm_lib_file_permissions = { workspace = true }
|
2023-06-13 06:26:50 +02:00
|
|
|
tokio = { workspace = true, features = ["rt", "macros", "net"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
tracing = { workspace = true }
|
2023-06-13 06:26:50 +02:00
|
|
|
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
|
|
|
|
|
|
|
|
|
2023-06-27 03:38:22 +02:00
|
|
|
ldap3_client = { workspace = true }
|
2023-06-13 06:26:50 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
serde_json = { workspace = true }
|
|
|
|
toml = { workspace = true }
|
2023-06-13 06:26:50 +02:00
|
|
|
url = { workspace = true, features = ["serde"] }
|
|
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
|
|
|
2023-10-08 09:39:00 +02:00
|
|
|
# Currently only for attribute - should attribute be broken out?
|
2023-06-27 03:38:22 +02:00
|
|
|
kanidmd_lib = { workspace = true }
|
2023-06-13 06:26:50 +02:00
|
|
|
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
2023-07-31 14:27:21 +02:00
|
|
|
kanidm_utils_users = { workspace = true }
|
2023-06-13 06:26:50 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
clap_complete = { workspace = true }
|
2023-10-11 07:44:29 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
sketching = { workspace = true }
|
2025-02-09 11:06:01 +01:00
|
|
|
|
|
|
|
[package.metadata.cargo-machete]
|
|
|
|
ignored = ["clap_complete"]
|