kanidm/tools/iam_migrations/freeipa/Cargo.toml

42 lines
1.3 KiB
TOML
Raw Normal View History

2022-11-09 22:43:22 +01:00
[package]
name = "kanidm-ipa-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 }
2022-11-09 22:43:22 +01:00
[dependencies]
base64urlsafedata = { workspace = true }
2022-11-09 22:43:22 +01:00
clap = { workspace = true, features = ["derive", "env"] }
chrono = { workspace = true }
cron = { workspace = true }
kanidm_client = { workspace = true }
kanidm_proto = { workspace = true }
2022-12-21 00:53:57 +01:00
tokio = { workspace = true, features = ["rt", "macros", "net"] }
tracing = { workspace = true }
2022-11-09 22:43:22 +01:00
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
ldap3_client = { workspace = true }
2022-11-09 22:43:22 +01:00
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
toml = { workspace = true }
2022-11-09 22:43:22 +01:00
url = { workspace = true, features = ["serde"] }
uuid = { workspace = true, features = ["serde"] }
2022-11-09 22:43:22 +01:00
# For file metadata, should this me moved out?
kanidmd_lib = { workspace = true }
2022-11-09 22:43:22 +01:00
2023-02-28 02:39:39 +01:00
[target.'cfg(target_family = "unix")'.dependencies]
users = { workspace = true }
2023-02-28 02:39:39 +01:00
2022-11-09 22:43:22 +01:00
[build-dependencies]
clap = { workspace = true, features = ["derive"] }
clap_complete = { workspace = true }