2019-09-04 03:06:37 +02:00
|
|
|
[package]
|
2019-09-14 15:44:08 +02:00
|
|
|
name = "kanidm_client"
|
2020-12-28 00:51:16 +01:00
|
|
|
version = "1.1.0-alpha.3"
|
2019-09-04 03:06:37 +02:00
|
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
|
|
edition = "2018"
|
2019-12-17 06:47:16 +01:00
|
|
|
license = "MPL-2.0"
|
|
|
|
description = "Kanidm Client Library"
|
|
|
|
documentation = "https://docs.rs/kanidm_client/latest/kanidm_client/"
|
2020-01-17 02:51:15 +01:00
|
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
|
|
repository = "https://github.com/kanidm/kanidm/"
|
2019-09-04 03:06:37 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.4"
|
2021-01-10 04:41:56 +01:00
|
|
|
env_logger = "0.8"
|
|
|
|
reqwest = { version = "0.11", features=["blocking", "cookies", "json", "native-tls"] }
|
2020-06-30 06:58:35 +02:00
|
|
|
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha" }
|
2019-10-05 02:40:43 +02:00
|
|
|
serde = "1.0"
|
2019-09-09 12:32:49 +02:00
|
|
|
serde_json = "1.0"
|
2019-11-19 02:50:37 +01:00
|
|
|
serde_derive = "1.0"
|
|
|
|
toml = "0.5"
|
2020-04-11 02:32:56 +02:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2020-12-02 02:12:07 +01:00
|
|
|
url = "2.1.1"
|
2020-07-28 08:55:58 +02:00
|
|
|
# users = "0.10"
|
2020-12-02 02:12:07 +01:00
|
|
|
# webauthn-authenticator-rs = "^0.1.2"
|
|
|
|
# webauthn-authenticator-rs = { path = "../../webauthn-authenticator-rs" }
|
|
|
|
|
|
|
|
webauthn-rs = "0.3.0-alpha.1"
|
|
|
|
# webauthn-rs = { path = "../../webauthn-rs" }
|
2019-09-04 03:06:37 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-10 04:41:56 +01:00
|
|
|
# tokio = { version = "0.2", features = ["full"] }
|
|
|
|
tokio = { version = "1", features = ["rt", "net", "time", "macros", "sync", "signal"] }
|
2020-05-11 14:16:09 +02:00
|
|
|
kanidm = { path = "../kanidmd" }
|
2020-03-07 01:49:39 +01:00
|
|
|
futures = "0.3"
|
2020-09-06 00:44:35 +02:00
|
|
|
async-std = "1.6"
|
2020-12-02 02:12:07 +01:00
|
|
|
|
|
|
|
webauthn-authenticator-rs = "0.3.0-alpha.1"
|
|
|
|
# webauthn-authenticator-rs = { path = "../../webauthn-authenticator-rs" }
|