mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Update to 1.39 + all deps update, and setup cargo.toml's for publishing to crates (to prevent domain/crate squatting).
27 lines
658 B
TOML
27 lines
658 B
TOML
[package]
|
|
name = "kanidm_client"
|
|
version = "0.1.0"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
edition = "2018"
|
|
license = "MPL-2.0"
|
|
description = "Kanidm Client Library"
|
|
documentation = "https://docs.rs/kanidm_client/latest/kanidm_client/"
|
|
homepage = "https://github.com/Firstyear/kanidm/"
|
|
repostiory = "https://github.com/Firstyear/kanidm/"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
env_logger = "0.6"
|
|
reqwest = "0.9"
|
|
kanidm_proto = { path = "../kanidm_proto", version = "0.1" }
|
|
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", version = "0.1" }
|
|
futures = "0.1"
|