kanidm/kanidm_client/Cargo.toml
Firstyear 6157c65d3a
Add support for better client building (#147)
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.
2019-11-19 12:20:37 +10:30

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"