mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Implements #134 Client Builder Pattern. This makes it much easier to build a client by making the configuration of the client lib follow a builder pattern. The error management needs a lot of work still, but for now it's rough and it works.
27 lines
537 B
TOML
27 lines
537 B
TOML
[package]
|
|
name = "kanidm_tools"
|
|
version = "0.1.0"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
edition = "2018"
|
|
default-run = "kanidm"
|
|
|
|
[[bin]]
|
|
name = "kanidm"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_ssh_authorizedkeys"
|
|
path = "src/ssh_authorizedkeys.rs"
|
|
|
|
[dependencies]
|
|
kanidm_client = { path = "../kanidm_client" }
|
|
kanidm_proto = { path = "../kanidm_proto" }
|
|
rpassword = "0.4"
|
|
structopt = { version = "0.2", default-features = false }
|
|
log = "0.4"
|
|
env_logger = "0.6"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
shellexpand = "1.0"
|
|
|