2022-02-20 03:43:38 +01:00
|
|
|
[package]
|
2022-10-05 01:48:48 +02:00
|
|
|
name = "kanidmd_core"
|
|
|
|
description = "Kanidm Server Core and Library"
|
2022-02-20 03:43:38 +01:00
|
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
2022-10-24 01:50:31 +02:00
|
|
|
autotests = false
|
2022-10-01 08:08:51 +02:00
|
|
|
|
2023-05-25 00:25:16 +02:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2023-05-25 00:25:16 +02:00
|
|
|
async-trait = { workspace = true }
|
|
|
|
chrono = { workspace = true }
|
|
|
|
cron = { workspace = true }
|
|
|
|
compact_jwt = { workspace = true }
|
|
|
|
futures-util = { workspace = true }
|
|
|
|
http-types = { workspace = true }
|
|
|
|
kanidm_proto = { workspace = true }
|
|
|
|
kanidmd_lib = { workspace = true }
|
|
|
|
ldap3_proto = { workspace = true }
|
|
|
|
libc = { workspace = true }
|
|
|
|
openssl = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
regex = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-05-25 00:25:16 +02:00
|
|
|
serde_json = { workspace = true }
|
|
|
|
sketching = { workspace = true }
|
|
|
|
tide = { workspace = true }
|
|
|
|
time = { workspace = true, features = ["serde", "std","local-offset"] }
|
|
|
|
tide-compress = { workspace = true }
|
|
|
|
tide-openssl = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
tokio = { workspace = true, features = ["net", "sync", "io-util", "macros"] }
|
2023-05-25 00:25:16 +02:00
|
|
|
tokio-openssl = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
2023-01-23 10:58:13 +01:00
|
|
|
toml = {workspace = true}
|
2022-10-01 08:08:51 +02:00
|
|
|
tracing = { workspace = true, features = ["attributes"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
urlencoding = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
uuid = { workspace = true, features = ["serde", "v4" ] }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-05-25 00:25:16 +02:00
|
|
|
profiles = { workspace = true }
|