kanidm/kanidmd/daemon/Cargo.toml
James Hodgkinson 7d27612174
Windows automagical buildingtons (#798)
* windows build automation
* making fmt happy, fixing windows-related bug
* disabled cargo_incremental when using `sccache`, added build options ARG to Dockerfile, limit docker build to one job
2022-05-31 14:13:21 +10:00

35 lines
1 KiB
TOML

[package]
name = "daemon"
version = "1.1.0-alpha.8"
authors = ["William Brown <william@blackhats.net.au>"]
rust-version = "1.59"
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]
kanidm = { path = "../idm" }
score = { path = "../score" }
structopt = { version = "^0.3.26", default-features = false }
users = "^0.11.0"
serde = { version = "^1.0.137", features = ["derive"] }
tokio = { version = "^1.18.0", features = ["rt-multi-thread", "macros", "signal"] }
toml = "0.5.9"
[target.'cfg(not(target_family = "windows"))'.dependencies]
tikv-jemallocator = "0.5"
[build-dependencies]
serde = { version = "1", features = ["derive"] }
structopt = { version = "0.3", default-features = false }
profiles = { path = "../../profiles" }