mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
Bumps [whoami](https://github.com/ardaku/whoami) from 1.2.1 to 1.2.3. - [Release notes](https://github.com/ardaku/whoami/releases) - [Changelog](https://github.com/ardaku/whoami/blob/stable/CHANGELOG.md) - [Commits](https://github.com/ardaku/whoami/compare/v1.2.1...v1.2.3) --- updated-dependencies: - dependency-name: whoami dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "daemon"
|
|
version = "1.1.0-alpha.9"
|
|
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" }
|
|
kanidm_proto = { path = "../../kanidm_proto" }
|
|
score = { path = "../score" }
|
|
sketching = { path = "../../sketching" }
|
|
|
|
clap = { version = "^3.2", features = ["derive", "env"] }
|
|
serde = { version = "^1.0.142", features = ["derive"] }
|
|
tokio = { version = "^1.21.0", features = ["rt-multi-thread", "macros", "signal"] }
|
|
toml = "0.5.9"
|
|
|
|
[target.'cfg(target_family = "windows")'.dependencies]
|
|
whoami = "^1.2.3"
|
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
|
users = "^0.11.0"
|
|
tikv-jemallocator = "0.5"
|
|
|
|
[build-dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
clap = { version = "^3.2", features = ["derive"] }
|
|
clap_complete = "^3.2.5"
|
|
profiles = { path = "../../profiles" }
|