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.
22 lines
394 B
TOML
22 lines
394 B
TOML
[package]
|
|
name = "kanidm_client"
|
|
version = "0.1.0"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
env_logger = "0.6"
|
|
reqwest = "0.9"
|
|
kanidm_proto = { path = "../kanidm_proto" }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
toml = "0.5"
|
|
|
|
[dev-dependencies]
|
|
tokio = "0.1"
|
|
actix = "0.7"
|
|
kanidm = { path = "../kanidmd" }
|
|
futures = "0.1"
|