lldap/app/Cargo.toml

29 lines
507 B
TOML
Raw Normal View History

[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]
2021-05-13 17:33:57 +00:00
anyhow = "1"
2021-05-14 07:15:37 +00:00
chrono = "*"
2021-05-13 17:33:57 +00:00
http = "0.2.4"
jwt = "0.13"
2021-05-14 07:15:37 +00:00
lldap_model = { path = "../model" }
serde = "1"
serde_json = "1"
wasm-bindgen = "0.2"
yew = "0.17"
[dependencies.web-sys]
version = "0.3"
features = [
"Document",
"Element",
"HtmlDocument",
"console",
]
[lib]
crate-type = ["cdylib"]