2019-09-04 03:06:37 +02:00
|
|
|
[package]
|
2019-09-14 15:44:08 +02:00
|
|
|
name = "kanidm_proto"
|
2019-12-17 06:47:16 +01:00
|
|
|
description = "Kanidm Protocol Bindings for serde"
|
|
|
|
documentation = "https://docs.rs/kanidm_proto/latest/kanidm_proto/"
|
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 = true
|
|
|
|
|
2022-07-30 14:10:24 +02:00
|
|
|
[features]
|
|
|
|
wasm = ["webauthn-rs-proto/wasm"]
|
|
|
|
|
2019-09-04 03:06:37 +02:00
|
|
|
[dependencies]
|
2023-06-27 03:38:22 +02:00
|
|
|
base32 = { workspace = true }
|
|
|
|
base64urlsafedata = { workspace = true }
|
|
|
|
num_enum = { workspace = true }
|
|
|
|
scim_proto = { 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 }
|
2023-08-03 00:51:30 +02:00
|
|
|
serde_with = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
time = { workspace = true, features = ["serde", "std"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
tracing = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
url = { workspace = true, features = ["serde"] }
|
2023-06-27 03:38:22 +02:00
|
|
|
urlencoding = { workspace = true }
|
2023-10-14 04:39:14 +02:00
|
|
|
utoipa = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
uuid = { workspace = true, features = ["serde"] }
|
2024-06-05 01:57:16 +02:00
|
|
|
webauthn-rs-proto = { workspace = true }
|