2019-09-04 03:06:37 +02:00
|
|
|
[package]
|
2019-09-14 15:44:08 +02:00
|
|
|
name = "kanidm_client"
|
2019-12-17 06:47:16 +01:00
|
|
|
description = "Kanidm Client Library"
|
|
|
|
documentation = "https://docs.rs/kanidm_client/latest/kanidm_client/"
|
2022-10-01 08:08:51 +02:00
|
|
|
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
2019-09-04 03:06:37 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
tracing.workspace = true
|
|
|
|
reqwest = { workspace = true, features=["cookies", "json", "native-tls"] }
|
|
|
|
kanidm_proto.workspace = true
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json.workspace = true
|
|
|
|
time = { workspace = true, features = ["serde", "std"] }
|
|
|
|
tokio = { workspace = true, features = ["rt", "net", "time", "macros", "sync", "signal"] }
|
|
|
|
toml.workspace = true
|
|
|
|
uuid = { workspace = true, features = ["serde", "v4"] }
|
|
|
|
url = { workspace = true, features = ["serde"] }
|
2022-09-25 03:21:30 +02:00
|
|
|
webauthn-rs-proto = { workspace = true, features = ["wasm"] }
|
2019-09-04 03:06:37 +02:00
|
|
|
|