app: Fix local timezone not taken into account

This commit is contained in:
Valentin Tolmer 2021-08-31 13:54:56 +02:00 committed by nitnelave
parent cd91b4d3ac
commit 9c4f8931a0
2 changed files with 8 additions and 1 deletions

2
Cargo.lock generated
View File

@ -621,11 +621,13 @@ version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [ dependencies = [
"js-sys",
"libc", "libc",
"num-integer", "num-integer",
"num-traits", "num-traits",
"serde", "serde",
"time 0.1.43", "time 0.1.43",
"wasm-bindgen",
"winapi", "winapi",
] ]

View File

@ -6,7 +6,6 @@ edition = "2018"
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
chrono = "*"
http = "0.2.4" http = "0.2.4"
jwt = "0.13" jwt = "0.13"
rand = "0.8" rand = "0.8"
@ -26,6 +25,12 @@ features = [
"console", "console",
] ]
[dependencies.chrono]
version = "*"
features = [
"wasmbind"
]
[dependencies.lldap_model] [dependencies.lldap_model]
path = "../model" path = "../model"
features = [ "opaque_client" ] features = [ "opaque_client" ]