2022-02-20 03:43:38 +01:00
|
|
|
[package]
|
|
|
|
name = "daemon"
|
|
|
|
description = "Kanidm Server Daemon"
|
|
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
2022-10-01 08:08:51 +02:00
|
|
|
|
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 }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "kanidmd"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-27 03:38:22 +02:00
|
|
|
kanidm_proto = { workspace = true }
|
|
|
|
kanidmd_core = { workspace = true }
|
|
|
|
kanidm_lib_file_permissions = { workspace = true }
|
|
|
|
sketching = { workspace = true }
|
|
|
|
fs2 = { workspace = true }
|
2022-08-09 05:07:06 +02:00
|
|
|
|
2022-10-01 08:08:51 +02:00
|
|
|
clap = { workspace = true, features = ["env"] }
|
2023-01-23 10:58:13 +01:00
|
|
|
reqwest = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "signal"] }
|
2023-01-23 10:58:13 +01:00
|
|
|
toml = { workspace = true }
|
2023-07-09 23:41:11 +02:00
|
|
|
is-terminal = "0.4.9"
|
2022-02-20 03:43:38 +01:00
|
|
|
|
2022-07-06 02:53:43 +02:00
|
|
|
[target.'cfg(target_family = "windows")'.dependencies]
|
2023-06-27 03:38:22 +02:00
|
|
|
whoami = { workspace = true }
|
2022-07-06 02:53:43 +02:00
|
|
|
|
2022-05-31 06:13:21 +02:00
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
2023-06-27 03:38:22 +02:00
|
|
|
users = { workspace = true }
|
|
|
|
tikv-jemallocator = { workspace = true }
|
2022-05-31 06:13:21 +02:00
|
|
|
|
2022-02-20 03:43:38 +01:00
|
|
|
[build-dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
clap = { workspace = true, features = ["derive"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
clap_complete = { workspace = true }
|
|
|
|
profiles = { workspace = true }
|