mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Fixes #180 - this adds an oddjobd style tasks daemon to the unix tools. This supports creation of home directories and the maintenance of alias symlinks to these allowing user renames. The tasks daemon is written to require root, but is seperate from the unixd daemon. Communication is via a root-only unix socket that the task daemon connects into to reduce the possibility of exploit. Fixes #369 due to the changes to call_daemon_blocking
24 lines
623 B
TOML
24 lines
623 B
TOML
[package]
|
|
name = "kanidm_proto"
|
|
version = "1.1.0-alpha.3"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
edition = "2018"
|
|
license = "MPL-2.0"
|
|
description = "Kanidm Protocol Bindings for serde"
|
|
documentation = "https://docs.rs/kanidm_proto/latest/kanidm_proto/"
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
repository = "https://github.com/kanidm/kanidm/"
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
|
zxcvbn = { version = "2.0", features = ["ser"] }
|
|
base32 = "0.4"
|
|
thiserror = "1.0"
|
|
webauthn-rs = "0.3.0-alpha.5"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
|