2022-02-20 03:43:38 +01:00
|
|
|
[package]
|
|
|
|
name = "daemon"
|
2022-05-01 05:55:21 +02:00
|
|
|
version = "1.1.0-alpha.8"
|
2022-02-20 03:43:38 +01:00
|
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
2022-03-31 06:12:53 +02:00
|
|
|
rust-version = "1.59"
|
2022-02-20 03:43:38 +01:00
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Kanidm Server Daemon"
|
|
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
|
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
|
|
repository = "https://github.com/kanidm/kanidm/"
|
|
|
|
|
|
|
|
# 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-04-27 02:56:18 +02:00
|
|
|
kanidm = { path = "../idm" }
|
2022-02-20 03:43:38 +01:00
|
|
|
score = { path = "../score" }
|
2022-04-27 05:35:26 +02:00
|
|
|
structopt = { version = "^0.3.26", default-features = false }
|
|
|
|
users = "^0.11.0"
|
2022-05-02 02:30:09 +02:00
|
|
|
serde = { version = "^1.0.137", features = ["derive"] }
|
2022-05-01 05:55:21 +02:00
|
|
|
tokio = { version = "^1.18.0", features = ["rt-multi-thread", "macros", "signal"] }
|
2022-04-27 05:35:26 +02:00
|
|
|
toml = "0.5.9"
|
2022-02-20 03:43:38 +01:00
|
|
|
|
2022-05-31 06:13:21 +02:00
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
|
|
|
tikv-jemallocator = "0.5"
|
|
|
|
|
2022-02-20 03:43:38 +01:00
|
|
|
[build-dependencies]
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
structopt = { version = "0.3", default-features = false }
|
|
|
|
profiles = { path = "../../profiles" }
|