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/"
|
2023-02-01 07:21:00 +01:00
|
|
|
|
2023-08-01 09:25:32 +02:00
|
|
|
version = "1.1.0-rc.14-dev"
|
2022-10-07 07:42:13 +02:00
|
|
|
authors = [
|
|
|
|
"William Brown <william@blackhats.net.au>",
|
|
|
|
"James Hodgkinson <james@terminaloutcomes.com>",
|
2023-08-16 13:02:48 +02:00
|
|
|
]
|
2023-02-01 03:50:20 +01:00
|
|
|
rust-version = "1.66"
|
2022-10-07 07:42:13 +02:00
|
|
|
edition = "2021"
|
|
|
|
license = "MPL-2.0"
|
|
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
|
|
repository = "https://github.com/kanidm/kanidm/"
|
2022-10-01 08:08:51 +02:00
|
|
|
|
2021-03-26 02:22:00 +01:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
2023-10-22 13:16:42 +02:00
|
|
|
test = true
|
|
|
|
doctest = false
|
2021-03-26 02:22:00 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-28 02:39:39 +01:00
|
|
|
gloo = { workspace = true }
|
|
|
|
js-sys = { workspace = true }
|
2023-03-01 04:10:52 +01:00
|
|
|
kanidm_proto = { workspace = true, features = ["wasm"] }
|
2023-03-07 02:50:45 +01:00
|
|
|
qrcode = { workspace = true, features = ["svg"] }
|
2023-02-01 07:21:00 +01:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-02-28 02:39:39 +01:00
|
|
|
serde_json = { workspace = true }
|
|
|
|
serde-wasm-bindgen = { workspace = true }
|
|
|
|
wasm-bindgen = { workspace = true }
|
|
|
|
wasm-bindgen-futures = { workspace = true }
|
|
|
|
url = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
2023-02-01 07:21:00 +01:00
|
|
|
yew = { workspace = true, features = ["csr"] }
|
2023-02-28 02:39:39 +01:00
|
|
|
yew-router = { workspace = true }
|
2023-05-25 00:25:16 +02:00
|
|
|
time = { workspace = true }
|
2023-08-21 01:40:42 +02:00
|
|
|
gloo-timers = "0.3.0"
|
2023-08-16 13:02:48 +02:00
|
|
|
wasm-timer = "0.2.5"
|
|
|
|
regex.workspace = true
|
|
|
|
lazy_static.workspace = true
|
2022-10-07 07:42:13 +02:00
|
|
|
|
2021-12-31 00:11:20 +01:00
|
|
|
[dependencies.web-sys]
|
2023-02-01 07:21:00 +01: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",
|
|
|
|
]
|
2023-07-31 14:27:21 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wasm-bindgen-test = { workspace = true }
|