fix(authenticator): u2f cannot handle the chrono 0.4.30 breaking change (#679)

Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
This commit is contained in:
Lucas Fernandes Nogueira
2023-10-23 10:30:16 -03:00
committed by GitHub
parent 437dfba814
commit 0fc910a9f3
2 changed files with 4 additions and 4 deletions
Generated
+3 -3
View File
@@ -841,9 +841,9 @@ dependencies = [
[[package]]
name = "chrono"
version = "0.4.26"
version = "0.4.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
checksum = "d87d9d13be47a5b7c3907137f1290b0459a7f80efb26be8c52afb11963bccb02"
dependencies = [
"android-tzdata",
"iana-time-zone",
@@ -852,7 +852,7 @@ dependencies = [
"serde",
"time 0.1.45",
"wasm-bindgen",
"winapi",
"windows-targets 0.48.5",
]
[[package]]
+1 -1
View File
@@ -23,7 +23,7 @@ once_cell = "1"
sha2 = "0.10"
base64 = "0.21"
u2f = "0.2"
chrono = "0.4"
chrono = "<=0.4.29"
[dev-dependencies]
rand = "0.8"