lldap/app/Cargo.toml
Valentin Tolmer 3eb53ba5bf model: rename to auth
Since the "model" doesn't contain any message from the API anymore, and
instead contains only the structures needed for authentication, it was
renamed as such.
2021-08-31 20:32:55 +02:00

40 lines
657 B
TOML

[package]
name = "lldap_app"
version = "0.1.0"
authors = ["Valentin Tolmer <valentin@tolmer.fr>", "Steve Barrau <steve.barrau@gmail.com>", "Thomas Wickham <mackwic@gmail.com>"]
edition = "2018"
[dependencies]
anyhow = "1"
http = "0.2.4"
jwt = "0.13"
rand = "0.8"
serde = "1"
serde_json = "1"
wasm-bindgen = "0.2"
yew = "0.18"
yew-router = "0.15"
graphql_client = "0.10.0"
[dependencies.web-sys]
version = "0.3"
features = [
"Document",
"Element",
"HtmlDocument",
"console",
]
[dependencies.chrono]
version = "*"
features = [
"wasmbind"
]
[dependencies.lldap_auth]
path = "../auth"
features = [ "opaque_client" ]
[lib]
crate-type = ["cdylib"]