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]
|
2024-10-26 04:08:48 +02:00
|
|
|
# default = ["dev-oauth2-device-flow"]
|
2022-07-30 14:10:24 +02:00
|
|
|
wasm = ["webauthn-rs-proto/wasm"]
|
2024-09-09 02:53:10 +02:00
|
|
|
test = []
|
2022-07-30 14:10:24 +02:00
|
|
|
|
2024-10-26 04:08:48 +02:00
|
|
|
dev-oauth2-device-flow = []
|
|
|
|
|
2019-09-04 03:06:37 +02:00
|
|
|
[dependencies]
|
2023-06-27 03:38:22 +02:00
|
|
|
base32 = { workspace = true }
|
2024-10-26 04:08:48 +02:00
|
|
|
base64 = { workspace = true }
|
2024-09-17 06:07:43 +02:00
|
|
|
clap = { workspace = true }
|
2023-06-27 03:38:22 +02:00
|
|
|
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 }
|
2024-10-15 06:29:45 +02:00
|
|
|
serde_urlencoded = { workspace = true }
|
2024-08-29 03:38:00 +02:00
|
|
|
serde_with = { workspace = true, features = ["time_0_3", "base64", "hex"] }
|
|
|
|
smartstring = { workspace = true, features = ["serde"] }
|
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 }
|
2024-10-03 07:57:18 +02:00
|
|
|
sshkey-attest = { workspace = true }
|
2024-10-22 00:27:37 +02:00
|
|
|
sshkeys = { workspace = true }
|
2024-09-09 02:53:10 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
enum-iterator = { workspace = true }
|