mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* Refactor: move the object graph ui to admin web ui * Add dynamic js loading support Load viz.js dynamically * Add some js docs * chore: cleanup imports * chore: remove unused clipboard feature chore: remove unused mermaid.sh * Messing with the profile.release settings and reverting the changes I tried has now made the build much smaller yay :D * Refactor: user raw search requests Assert service-accounts properly * refactor: new v1 proto structure * Add self to CONTRIBUTORS.md --------- Co-authored-by: James Hodgkinson <james@terminaloutcomes.com>
35 lines
1,023 B
TOML
35 lines
1,023 B
TOML
[package]
|
|
name = "kanidm_proto"
|
|
description = "Kanidm Protocol Bindings for serde"
|
|
documentation = "https://docs.rs/kanidm_proto/latest/kanidm_proto/"
|
|
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[lib]
|
|
test = true
|
|
doctest = true
|
|
|
|
[features]
|
|
wasm = ["webauthn-rs-proto/wasm"]
|
|
|
|
[dependencies]
|
|
base32 = { workspace = true }
|
|
base64urlsafedata = { workspace = true }
|
|
num_enum = { workspace = true }
|
|
scim_proto = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
time = { workspace = true, features = ["serde", "std"] }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true, features = ["serde"] }
|
|
urlencoding = { workspace = true }
|
|
utoipa = { workspace = true }
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
webauthn-rs-proto = { workspace = true } |