lldap/app/Cargo.toml

49 lines
841 B
TOML
Raw Normal View History

[package]
name = "lldap_app"
2021-10-20 06:07:07 +00:00
version = "0.2.0"
authors = ["Valentin Tolmer <valentin@tolmer.fr>", "Steve Barrau <steve.barrau@gmail.com>", "Thomas Wickham <mackwic@gmail.com>"]
edition = "2018"
[dependencies]
2021-05-13 17:33:57 +00:00
anyhow = "1"
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"
validator = "*"
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"
yew_form = "0.1.8"
yew_form_derive = "*"
2021-05-14 07:15:37 +00:00
[dependencies.web-sys]
version = "0.3"
features = [
"Document",
"Element",
"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" ]
[lib]
crate-type = ["cdylib"]