2021-03-26 02:22:00 +01:00
|
|
|
[package]
|
|
|
|
name = "kanidmd_web_ui"
|
|
|
|
description = "Kanidm Server Web User Interface"
|
|
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
2022-10-01 08:08:51 +02:00
|
|
|
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
2021-03-26 02:22:00 +01:00
|
|
|
|
2022-08-01 07:52:01 +02:00
|
|
|
# These are ignored because the crate is in a workspace
|
|
|
|
#[profile.release]
|
2022-07-30 14:10:24 +02:00
|
|
|
# less code to include into binary
|
2022-08-01 07:52:01 +02:00
|
|
|
|
2021-03-26 02:22:00 +01:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-01 08:08:51 +02:00
|
|
|
compact_jwt = { workspace = true, default-features = false, features = ["unsafe_release_without_verify"] }
|
|
|
|
gloo.workspace = true
|
|
|
|
gloo-net.workspace = true
|
|
|
|
js-sys.workspace = true
|
|
|
|
kanidm_proto = { workspace = true, features = ["wasm"] }
|
|
|
|
qrcode = { workspace = true, default-features = false, features = ["svg"] }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
serde_json.workspace = true
|
|
|
|
serde-wasm-bindgen.workspace = true
|
|
|
|
uuid.workspace = true
|
|
|
|
wasm-bindgen.workspace = true
|
|
|
|
wasm-bindgen-futures.workspace = true
|
|
|
|
wasm-bindgen-test.workspace = true
|
|
|
|
yew.workspace = true
|
|
|
|
yew-agent.workspace = true
|
|
|
|
yew-router.workspace = true
|
2022-07-30 14:10:24 +02:00
|
|
|
|
2021-12-31 00:11:20 +01:00
|
|
|
[dependencies.web-sys]
|
2022-10-01 08:08:51 +02:00
|
|
|
workspace = true
|
2021-12-31 00:11:20 +01:00
|
|
|
features = [
|
|
|
|
"AuthenticationExtensionsClientOutputs",
|
|
|
|
"AuthenticatorResponse",
|
|
|
|
"CredentialCreationOptions",
|
|
|
|
"CredentialRequestOptions",
|
|
|
|
"CredentialsContainer",
|
2022-01-09 01:47:21 +01:00
|
|
|
"DomTokenList",
|
|
|
|
"Element",
|
|
|
|
"Event",
|
|
|
|
"FocusEvent",
|
2022-09-07 03:40:54 +02:00
|
|
|
"FormData",
|
2021-12-31 00:11:20 +01:00
|
|
|
"Headers",
|
2022-06-05 08:30:08 +02:00
|
|
|
"HtmlButtonElement",
|
2021-12-31 00:11:20 +01:00
|
|
|
"HtmlDocument",
|
2022-09-07 03:40:54 +02:00
|
|
|
"HtmlFormElement",
|
2021-12-31 00:11:20 +01:00
|
|
|
"Navigator",
|
|
|
|
"PublicKeyCredential",
|
|
|
|
"PublicKeyCredentialCreationOptions",
|
|
|
|
"PublicKeyCredentialRpEntity",
|
|
|
|
"PublicKeyCredentialUserEntity",
|
|
|
|
"Request",
|
|
|
|
"RequestCredentials",
|
|
|
|
"RequestInit",
|
|
|
|
"RequestMode",
|
|
|
|
"RequestRedirect",
|
|
|
|
"Response",
|
|
|
|
"Window",
|
|
|
|
]
|
|
|
|
|