mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
35 lines
1.5 KiB
TOML
35 lines
1.5 KiB
TOML
[package]
|
|
name = "kanidmd_web_ui"
|
|
version = "1.1.0-alpha.5"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
edition = "2018"
|
|
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 = "1.0"
|
|
serde_derive = "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.0-alpha.9", default-features = false, features = ["wasm"] }
|
|
|
|
# Waiting on 0.19 to be released for the router rewrite. :)
|
|
# yewdux = "^0.6"
|
|
yew-router = { git = "https://github.com/yewstack/yew", rev = "1280dfd8315b893e96727b5ca5ad852919563823" }
|
|
yew = {git = "https://github.com/yewstack/yew", rev = "1280dfd8315b893e96727b5ca5ad852919563823"}
|
|
yew-services = {git = "https://github.com/yewstack/yew", rev = "1280dfd8315b893e96727b5ca5ad852919563823"}
|
|
|
|
web-sys = { version = "0.3", features = ["PublicKeyCredentialUserEntity", "CredentialCreationOptions", "Navigator", "Window", "CredentialsContainer", "PublicKeyCredentialRpEntity", "PublicKeyCredentialCreationOptions", "PublicKeyCredential", "AuthenticatorResponse", "AuthenticationExtensionsClientOutputs", "CredentialRequestOptions", "HtmlDocument"] }
|
|
js-sys = "0.3"
|