Load time zone when opening vault

This commit is contained in:
Joscha 2024-01-03 02:06:33 +01:00
parent c286e0244c
commit 43a8b91dca
5 changed files with 60 additions and 10 deletions

16
Cargo.lock generated
View file

@ -246,6 +246,12 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
name = "const_fn"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
[[package]]
name = "cookie"
version = "0.18.0"
@ -297,6 +303,7 @@ dependencies = [
"tokio",
"tokio-tungstenite",
"toss",
"tz-rs",
"unicode-segmentation",
"unicode-width",
"vault",
@ -1507,6 +1514,15 @@ version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "tz-rs"
version = "0.6.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33851b15c848fad2cf4b105c6bb66eb9512b6f6c44a4b13f57c53c73c707e2b4"
dependencies = [
"const_fn",
]
[[package]]
name = "unicode-bidi"
version = "0.3.14"