2021-05-08 09:34:55 +00:00
|
|
|
[package]
|
|
|
|
name = "lldap_app"
|
2023-04-11 12:25:14 +00:00
|
|
|
version = "0.4.3"
|
2021-11-29 09:26:11 +00:00
|
|
|
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
|
2021-11-14 00:23:21 +00:00
|
|
|
edition = "2021"
|
2022-11-21 08:13:25 +00:00
|
|
|
include = ["src/**/*", "queries/**/*", "Cargo.toml", "../schema.graphql"]
|
2021-05-08 09:34:55 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-05-13 17:33:57 +00:00
|
|
|
anyhow = "1"
|
2022-08-08 15:36:50 +00:00
|
|
|
base64 = "0.13"
|
2023-03-08 13:44:08 +00:00
|
|
|
gloo-console = "0.2.3"
|
2023-03-08 17:05:08 +00:00
|
|
|
gloo-file = "0.2.3"
|
|
|
|
gloo-net = "*"
|
2021-09-19 11:44:58 +00:00
|
|
|
graphql_client = "0.10"
|
|
|
|
http = "0.2"
|
2021-05-13 17:33:57 +00:00
|
|
|
jwt = "0.13"
|
2021-06-23 07:40:04 +00:00
|
|
|
rand = "0.8"
|
2021-05-14 07:15:37 +00:00
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|
2023-03-08 17:05:08 +00:00
|
|
|
url-escape = "0.1.1"
|
2022-07-01 12:26:57 +00:00
|
|
|
validator = "=0.14"
|
2021-09-19 11:44:58 +00:00
|
|
|
validator_derive = "*"
|
2021-05-14 07:15:37 +00:00
|
|
|
wasm-bindgen = "0.2"
|
2023-03-08 17:05:08 +00:00
|
|
|
wasm-bindgen-futures = "*"
|
|
|
|
yew = "0.19.3"
|
|
|
|
yew-router = "0.16"
|
2021-05-14 07:15:37 +00:00
|
|
|
|
2022-03-22 19:45:59 +00:00
|
|
|
# Needed because of https://github.com/tkaitchuck/aHash/issues/95
|
|
|
|
indexmap = "=1.6.2"
|
|
|
|
|
2021-05-14 07:15:37 +00:00
|
|
|
[dependencies.web-sys]
|
|
|
|
version = "0.3"
|
|
|
|
features = [
|
|
|
|
"Document",
|
|
|
|
"Element",
|
2022-08-08 15:36:50 +00:00
|
|
|
"FileReader",
|
2021-05-14 07:15:37 +00:00
|
|
|
"HtmlDocument",
|
2021-09-16 21:22:11 +00:00
|
|
|
"HtmlInputElement",
|
|
|
|
"HtmlOptionElement",
|
2021-09-17 17:43:22 +00:00
|
|
|
"HtmlOptionsCollection",
|
|
|
|
"HtmlSelectElement",
|
2021-05-14 07:15:37 +00:00
|
|
|
"console",
|
|
|
|
]
|
2021-05-08 09:34:55 +00:00
|
|
|
|
2021-08-31 11:54:56 +00:00
|
|
|
[dependencies.chrono]
|
|
|
|
version = "*"
|
|
|
|
features = [
|
|
|
|
"wasmbind"
|
|
|
|
]
|
|
|
|
|
2021-08-31 14:29:49 +00:00
|
|
|
[dependencies.lldap_auth]
|
|
|
|
path = "../auth"
|
2021-06-08 20:23:46 +00:00
|
|
|
features = [ "opaque_client" ]
|
|
|
|
|
2022-08-09 08:07:56 +00:00
|
|
|
[dependencies.image]
|
|
|
|
features = ["jpeg"]
|
|
|
|
default-features = false
|
|
|
|
version = "0.24"
|
|
|
|
|
|
|
|
[dependencies.yew_form]
|
|
|
|
git = "https://github.com/jfbilodeau/yew_form"
|
2023-03-08 17:05:08 +00:00
|
|
|
rev = "4b9fabffb63393ec7626a4477fd36de12a07fac9"
|
2022-08-09 08:07:56 +00:00
|
|
|
|
|
|
|
[dependencies.yew_form_derive]
|
|
|
|
git = "https://github.com/jfbilodeau/yew_form"
|
2023-03-08 17:05:08 +00:00
|
|
|
rev = "4b9fabffb63393ec7626a4477fd36de12a07fac9"
|
2022-08-09 08:07:56 +00:00
|
|
|
|
2021-05-08 09:34:55 +00:00
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|