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
|
|
|
|
|
|
|
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]
|
2022-10-01 08:08:51 +02:00
|
|
|
async-trait.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
chrono.workspace = true
|
2022-12-28 08:52:25 +01:00
|
|
|
cron.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
compact_jwt.workspace = true
|
|
|
|
futures-util.workspace = true
|
|
|
|
http-types.workspace = true
|
|
|
|
kanidm_proto.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
kanidmd_lib.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
ldap3_proto.workspace = true
|
|
|
|
libc.workspace = true
|
|
|
|
openssl.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
rand.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
regex.workspace = true
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json.workspace = true
|
|
|
|
sketching.workspace = true
|
|
|
|
tide.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
time = { workspace = true, features = ["serde", "std"] }
|
2022-10-07 07:42:13 +02:00
|
|
|
tide-compress.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
tide-openssl.workspace = true
|
|
|
|
tokio = { workspace = true, features = ["net", "sync", "io-util", "macros"] }
|
|
|
|
tokio-openssl.workspace = true
|
|
|
|
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"] }
|
|
|
|
uuid = { workspace = true, features = ["serde", "v4" ] }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
profiles.workspace = true
|