mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
logging changes: * Offering auth mechanisms -> debug * 404's aren't really warnings * double tombstone message, one goes to debug other changes: * CSP changes to allow the bootstrap images to load * more testing javascriptfile things, I R * it's nice to know where things are * putting non-rust web things in static/ instead of src/ * RequestCredentials::SameOrigin is the default, also adding a utility function to save dupe code. Wow this saved... kilobytes. * removing commented code, fixing up codespell config * clippyisms * wtf, gha * dee-gloo-ing some things * adding some ubuntu build test things * sigh rustwasm/wasm-pack/issues/1138 * more do_request things * packaging things * hilarious dev env setup script * updated script works, all the UI works, including the experimental UI for naughty crabs * deb package fixes * fixed some notes * setup experimental UI tweaks
27 lines
938 B
TOML
27 lines
938 B
TOML
[package]
|
|
name = "kanidm_client"
|
|
description = "Kanidm Client Library"
|
|
documentation = "https://docs.rs/kanidm_client/latest/kanidm_client/"
|
|
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
tracing = { workspace = true }
|
|
reqwest = { workspace = true, default-features = false }
|
|
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"] }
|
|
webauthn-rs-proto = { workspace = true, features = ["wasm"] }
|
|
|