Pre-fill month field with previous month

This commit is contained in:
Joscha 2024-05-04 22:35:23 +02:00
parent 738509edab
commit 6507276488
3 changed files with 19 additions and 1 deletions

12
Cargo.lock generated
View file

@ -1092,6 +1092,7 @@ dependencies = [
"comemo",
"fontdb",
"maud",
"time",
"tokio",
"typst",
"typst-pdf",
@ -1288,6 +1289,15 @@ dependencies = [
"libc",
]
[[package]]
name = "num_threads"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
dependencies = [
"libc",
]
[[package]]
name = "numerals"
version = "0.1.4"
@ -2059,7 +2069,9 @@ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
dependencies = [
"deranged",
"itoa",
"libc",
"num-conv",
"num_threads",
"powerfmt",
"serde",
"time-core",