mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
60 lines
1.4 KiB
TOML
60 lines
1.4 KiB
TOML
[package]
|
|
name = "kanidmd_web_ui"
|
|
version = "1.1.0-alpha.7"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
rust-version = "1.59"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
description = "Kanidm Server Web User Interface"
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
repository = "https://github.com/kanidm/kanidm/"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
|
|
wasm-bindgen-futures = { version = "0.4" }
|
|
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha" }
|
|
# anyhow = "1"
|
|
|
|
webauthn-rs = { version = "0.3", default-features = false, features = ["wasm"] }
|
|
|
|
yew-router = "0.16"
|
|
yew = "0.19"
|
|
gloo = "0.5"
|
|
js-sys = "0.3"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
"AuthenticationExtensionsClientOutputs",
|
|
"AuthenticatorResponse",
|
|
"CredentialCreationOptions",
|
|
"CredentialRequestOptions",
|
|
"CredentialsContainer",
|
|
"DomTokenList",
|
|
"Element",
|
|
"Event",
|
|
"FocusEvent",
|
|
"Headers",
|
|
"HtmlDocument",
|
|
"Navigator",
|
|
"PublicKeyCredential",
|
|
"PublicKeyCredentialCreationOptions",
|
|
"PublicKeyCredentialRpEntity",
|
|
"PublicKeyCredentialUserEntity",
|
|
"Request",
|
|
"RequestCredentials",
|
|
"RequestInit",
|
|
"RequestMode",
|
|
"RequestRedirect",
|
|
"Response",
|
|
"Window",
|
|
]
|
|
|