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
|
|
|
|
|
|
|
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]
|
2022-10-01 08:08:51 +02:00
|
|
|
kanidm_proto.workspace = true
|
2022-10-05 01:48:48 +02:00
|
|
|
kanidmd_core.workspace = true
|
2023-03-01 04:10:52 +01:00
|
|
|
kanidm_lib_file_permissions.workspace = true
|
2022-10-01 08:08:51 +02:00
|
|
|
sketching.workspace = true
|
2023-04-26 13:09:18 +02:00
|
|
|
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 }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
2022-07-06 02:53:43 +02:00
|
|
|
[target.'cfg(target_family = "windows")'.dependencies]
|
2022-10-01 08:08:51 +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]
|
2022-10-01 08:08:51 +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"] }
|
|
|
|
clap_complete.workspace = true
|
|
|
|
profiles.workspace = true
|