lldap/app/Cargo.toml

66 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "lldap_app"
2022-11-21 10:59:36 +00:00
version = "1.0.0-alpha"
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
2021-11-14 00:23:21 +00:00
edition = "2021"
[dependencies]
2021-05-13 17:33:57 +00:00
anyhow = "1"
base64 = "0.13"
graphql_client = "0.10"
http = "0.2"
2021-05-13 17:33:57 +00:00
jwt = "0.13"
rand = "0.8"
2021-05-14 07:15:37 +00:00
serde = "1"
serde_json = "1"
2022-07-01 12:26:57 +00:00
validator = "=0.14"
validator_derive = "*"
2021-05-14 07:15:37 +00:00
wasm-bindgen = "0.2"
2021-05-30 15:02:09 +00:00
yew = "0.18"
yewtil = "*"
2021-05-30 15:02:09 +00:00
yew-router = "0.15"
2021-05-14 07:15:37 +00:00
# Needed because of https://github.com/tkaitchuck/aHash/issues/95
indexmap = "=1.6.2"
url-escape = "0.1.1"
2021-05-14 07:15:37 +00:00
[dependencies.web-sys]
version = "0.3"
features = [
"Document",
"Element",
"FileReader",
2021-05-14 07:15:37 +00:00
"HtmlDocument",
"HtmlInputElement",
"HtmlOptionElement",
"HtmlOptionsCollection",
"HtmlSelectElement",
2021-05-14 07:15:37 +00:00
"console",
]
[dependencies.chrono]
version = "*"
features = [
"wasmbind"
]
[dependencies.lldap_auth]
path = "../auth"
2021-06-08 20:23:46 +00:00
features = [ "opaque_client" ]
[dependencies.image]
features = ["jpeg"]
default-features = false
version = "0.24"
[dependencies.yew_form]
git = "https://github.com/jfbilodeau/yew_form"
rev = "67050812695b7a8a90b81b0637e347fc6629daed"
[dependencies.yew_form_derive]
git = "https://github.com/jfbilodeau/yew_form"
rev = "67050812695b7a8a90b81b0637e347fc6629daed"
[lib]
crate-type = ["cdylib"]