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-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
|
|
|
|
2023-10-22 13:16:42 +02:00
|
|
|
[lib]
|
|
|
|
test = true
|
|
|
|
doctest = false
|
|
|
|
|
2024-07-02 12:59:06 +02:00
|
|
|
[features]
|
2024-10-26 09:19:13 +02:00
|
|
|
default = []
|
2024-10-26 04:08:48 +02:00
|
|
|
dev-oauth2-device-flow = []
|
2024-07-02 12:59:06 +02:00
|
|
|
|
2022-02-20 03:43:38 +01:00
|
|
|
[dependencies]
|
2024-10-26 04:08:48 +02:00
|
|
|
askama = { workspace = true, features = ["with-axum"] }
|
2024-10-23 08:04:38 +02:00
|
|
|
askama_axum = { workspace = true }
|
2023-09-26 01:59:00 +02:00
|
|
|
axum = { workspace = true }
|
2024-07-02 12:59:06 +02:00
|
|
|
axum-htmx = { workspace = true }
|
2024-09-23 01:37:42 +02:00
|
|
|
axum-extra = { version = "0.9.4", features = ["cookie"] }
|
2024-05-30 04:50:45 +02:00
|
|
|
axum-macros = "0.4.1"
|
2024-10-26 09:19:13 +02:00
|
|
|
axum-server = { version = "0.7.1", default-features = false }
|
2023-07-24 02:05:10 +02:00
|
|
|
bytes = { workspace = true }
|
2023-05-25 00:25:16 +02:00
|
|
|
chrono = { workspace = true }
|
|
|
|
compact_jwt = { workspace = true }
|
2023-07-05 14:26:39 +02:00
|
|
|
cron = { workspace = true }
|
2023-10-08 09:39:00 +02:00
|
|
|
filetime = { workspace = true }
|
2023-07-24 02:05:10 +02:00
|
|
|
futures = { workspace = true }
|
2023-05-25 00:25:16 +02:00
|
|
|
futures-util = { workspace = true }
|
2023-07-05 14:26:39 +02:00
|
|
|
hyper = { workspace = true }
|
2024-05-30 04:50:45 +02:00
|
|
|
hyper-util = { workspace = true }
|
2023-05-25 00:25:16 +02:00
|
|
|
kanidm_proto = { workspace = true }
|
2023-09-26 01:59:00 +02:00
|
|
|
kanidm_utils_users = { workspace = true }
|
2023-05-25 00:25:16 +02:00
|
|
|
kanidmd_lib = { workspace = true }
|
2023-09-29 04:02:13 +02:00
|
|
|
kanidm_lib_crypto = { workspace = true }
|
2023-10-12 04:09:54 +02:00
|
|
|
kanidm_lib_file_permissions = { workspace = true }
|
2023-05-25 00:25:16 +02:00
|
|
|
ldap3_proto = { workspace = true }
|
|
|
|
libc = { workspace = true }
|
|
|
|
openssl = { workspace = true }
|
2024-05-30 12:22:19 +02:00
|
|
|
opentelemetry = { workspace = true, features = ["logs"] }
|
|
|
|
# opentelemetry_api = { workspace = true, features = ["logs"] }
|
2024-08-01 03:17:14 +02:00
|
|
|
qrcode = { workspace = true, features = ["svg"] }
|
2023-05-25 00:25:16 +02:00
|
|
|
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 }
|
2023-09-26 01:59:00 +02:00
|
|
|
serde_with = { workspace = true }
|
2023-05-25 00:25:16 +02:00
|
|
|
sketching = { workspace = true }
|
2023-09-26 01:59:00 +02:00
|
|
|
time = { workspace = true, features = ["serde", "std", "local-offset"] }
|
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-09-26 01:59:00 +02:00
|
|
|
toml = { workspace = true }
|
2024-09-16 00:39:49 +02:00
|
|
|
tower = { version = "0.5.1", features = ["tokio-stream", "tracing"] }
|
2024-10-02 05:18:53 +02:00
|
|
|
tower-http = { version = "0.6.1", features = [
|
2023-09-26 01:59:00 +02:00
|
|
|
"compression-gzip",
|
|
|
|
"fs",
|
|
|
|
"tokio",
|
|
|
|
"trace",
|
|
|
|
"tracing",
|
|
|
|
"uuid",
|
|
|
|
] }
|
2022-10-01 08:08:51 +02:00
|
|
|
tracing = { workspace = true, features = ["attributes"] }
|
2023-09-29 04:02:13 +02:00
|
|
|
url = { workspace = true, features = ["serde"] }
|
2023-09-26 01:59:00 +02:00
|
|
|
uuid = { workspace = true, features = ["serde", "v4"] }
|
2023-10-14 04:39:14 +02:00
|
|
|
utoipa = { workspace = true, features = [
|
|
|
|
"axum_extras",
|
|
|
|
"openapi_extensions",
|
|
|
|
"preserve_order", # Preserve order of properties when serializing the schema for a component.
|
2023-11-07 02:35:17 +01:00
|
|
|
"time",
|
|
|
|
"url",
|
|
|
|
"uuid",
|
2023-10-14 04:39:14 +02:00
|
|
|
] }
|
2023-10-16 07:15:53 +02:00
|
|
|
utoipa-swagger-ui = { workspace = true, features = ["axum"] }
|
2023-10-14 04:39:14 +02:00
|
|
|
|
2024-07-07 05:36:47 +02:00
|
|
|
webauthn-rs = { workspace = true, features = [
|
|
|
|
"resident-key-support",
|
|
|
|
"preview-features",
|
|
|
|
"danger-credential-internals",
|
|
|
|
] }
|
|
|
|
|
2023-10-14 04:39:14 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
walkdir = { workspace = true }
|
2023-10-31 10:26:18 +01:00
|
|
|
tempfile = { workspace = true }
|
2023-09-26 01:59:00 +02:00
|
|
|
|
2022-02-20 03:43:38 +01:00
|
|
|
[build-dependencies]
|
2023-08-01 09:25:32 +02:00
|
|
|
kanidm_build_profiles = { workspace = true }
|