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
|
|
|
|
2023-06-27 03:38:22 +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
|
|
|
|
2023-10-22 13:16:42 +02:00
|
|
|
[lib]
|
|
|
|
test = true
|
|
|
|
doctest = false
|
|
|
|
|
2019-09-04 03:06:37 +02:00
|
|
|
[dependencies]
|
2024-04-16 01:44:37 +02:00
|
|
|
compact_jwt = { workspace = true }
|
2023-06-27 03:38:22 +02:00
|
|
|
tracing = { workspace = true }
|
2023-10-04 09:24:12 +02:00
|
|
|
reqwest = { workspace = true, default-features = false, features = [
|
2024-01-13 00:21:59 +01:00
|
|
|
"cookies",
|
2023-10-04 09:24:12 +02:00
|
|
|
"multipart",
|
|
|
|
] }
|
2023-06-27 03:38:22 +02:00
|
|
|
kanidm_proto = { workspace = true }
|
2023-10-12 04:09:54 +02:00
|
|
|
kanidm_lib_file_permissions = { workspace = true }
|
2024-05-30 04:50:45 +02:00
|
|
|
http = { workspace = true }
|
|
|
|
hyper = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
serde_json = { workspace = true }
|
2024-10-15 06:29:45 +02:00
|
|
|
serde_urlencoded = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
time = { workspace = true, features = ["serde", "std"] }
|
2023-09-19 05:31:19 +02:00
|
|
|
tokio = { workspace = true, features = [
|
|
|
|
"rt",
|
|
|
|
"net",
|
|
|
|
"time",
|
|
|
|
"macros",
|
|
|
|
"sync",
|
|
|
|
"signal",
|
|
|
|
] }
|
2023-06-27 03:38:22 +02:00
|
|
|
toml = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
uuid = { workspace = true, features = ["serde", "v4"] }
|
|
|
|
url = { workspace = true, features = ["serde"] }
|
2024-10-26 09:19:13 +02:00
|
|
|
webauthn-rs-proto = { workspace = true }
|