gardesk/garlock / 498655a

Browse files

Add chrono dependency for time formatting

Required for configurable time display on lock screen with strftime patterns.
Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
498655a540692a0c7301f19abed42cef04320c28
Parents
af3cae8
Tree
595b417

2 changed files

StatusFile+-
M Cargo.lock 189 0
M Cargo.toml 1 0
Cargo.lockmodified
@@ -17,6 +17,15 @@ dependencies = [
1717
  "memchr",
1818
 ]
1919
 
20
+[[package]]
21
+name = "android_system_properties"
22
+version = "0.1.5"
23
+source = "registry+https://github.com/rust-lang/crates.io-index"
24
+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+dependencies = [
26
+ "libc",
27
+]
28
+
2029
 [[package]]
2130
 name = "anstream"
2231
 version = "0.6.21"
@@ -123,6 +132,12 @@ version = "2.10.0"
123132
 source = "registry+https://github.com/rust-lang/crates.io-index"
124133
 checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
125134
 
135
+[[package]]
136
+name = "bumpalo"
137
+version = "3.19.1"
138
+source = "registry+https://github.com/rust-lang/crates.io-index"
139
+checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
140
+
126141
 [[package]]
127142
 name = "bytemuck"
128143
 version = "1.24.0"
@@ -166,6 +181,16 @@ dependencies = [
166181
  "system-deps",
167182
 ]
168183
 
184
+[[package]]
185
+name = "cc"
186
+version = "1.2.53"
187
+source = "registry+https://github.com/rust-lang/crates.io-index"
188
+checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
189
+dependencies = [
190
+ "find-msvc-tools",
191
+ "shlex",
192
+]
193
+
169194
 [[package]]
170195
 name = "cexpr"
171196
 version = "0.6.0"
@@ -191,6 +216,19 @@ version = "1.0.4"
191216
 source = "registry+https://github.com/rust-lang/crates.io-index"
192217
 checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
193218
 
219
+[[package]]
220
+name = "chrono"
221
+version = "0.4.43"
222
+source = "registry+https://github.com/rust-lang/crates.io-index"
223
+checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
224
+dependencies = [
225
+ "iana-time-zone",
226
+ "js-sys",
227
+ "num-traits",
228
+ "wasm-bindgen",
229
+ "windows-link",
230
+]
231
+
194232
 [[package]]
195233
 name = "clang-sys"
196234
 version = "1.8.1"
@@ -253,6 +291,12 @@ version = "1.0.4"
253291
 source = "registry+https://github.com/rust-lang/crates.io-index"
254292
 checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
255293
 
294
+[[package]]
295
+name = "core-foundation-sys"
296
+version = "0.8.7"
297
+source = "registry+https://github.com/rust-lang/crates.io-index"
298
+checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
299
+
256300
 [[package]]
257301
 name = "crc32fast"
258302
 version = "1.5.0"
@@ -360,6 +404,12 @@ dependencies = [
360404
  "simd-adler32",
361405
 ]
362406
 
407
+[[package]]
408
+name = "find-msvc-tools"
409
+version = "0.1.8"
410
+source = "registry+https://github.com/rust-lang/crates.io-index"
411
+checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
412
+
363413
 [[package]]
364414
 name = "flate2"
365415
 version = "1.1.8"
@@ -439,6 +489,7 @@ version = "0.1.0"
439489
 dependencies = [
440490
  "anyhow",
441491
  "cairo-rs",
492
+ "chrono",
442493
  "clap",
443494
  "dirs",
444495
  "image",
@@ -615,6 +666,30 @@ version = "0.5.0"
615666
 source = "registry+https://github.com/rust-lang/crates.io-index"
616667
 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
617668
 
669
+[[package]]
670
+name = "iana-time-zone"
671
+version = "0.1.64"
672
+source = "registry+https://github.com/rust-lang/crates.io-index"
673
+checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
674
+dependencies = [
675
+ "android_system_properties",
676
+ "core-foundation-sys",
677
+ "iana-time-zone-haiku",
678
+ "js-sys",
679
+ "log",
680
+ "wasm-bindgen",
681
+ "windows-core",
682
+]
683
+
684
+[[package]]
685
+name = "iana-time-zone-haiku"
686
+version = "0.1.2"
687
+source = "registry+https://github.com/rust-lang/crates.io-index"
688
+checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
689
+dependencies = [
690
+ "cc",
691
+]
692
+
618693
 [[package]]
619694
 name = "image"
620695
 version = "0.24.9"
@@ -673,6 +748,16 @@ dependencies = [
673748
  "rayon",
674749
 ]
675750
 
751
+[[package]]
752
+name = "js-sys"
753
+version = "0.3.85"
754
+source = "registry+https://github.com/rust-lang/crates.io-index"
755
+checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
756
+dependencies = [
757
+ "once_cell",
758
+ "wasm-bindgen",
759
+]
760
+
676761
 [[package]]
677762
 name = "lazy_static"
678763
 version = "1.5.0"
@@ -1124,6 +1209,12 @@ dependencies = [
11241209
  "windows-sys 0.61.2",
11251210
 ]
11261211
 
1212
+[[package]]
1213
+name = "rustversion"
1214
+version = "1.0.22"
1215
+source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1217
+
11271218
 [[package]]
11281219
 name = "scopeguard"
11291220
 version = "1.2.0"
@@ -1501,6 +1592,51 @@ version = "0.11.1+wasi-snapshot-preview1"
15011592
 source = "registry+https://github.com/rust-lang/crates.io-index"
15021593
 checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
15031594
 
1595
+[[package]]
1596
+name = "wasm-bindgen"
1597
+version = "0.2.108"
1598
+source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1600
+dependencies = [
1601
+ "cfg-if",
1602
+ "once_cell",
1603
+ "rustversion",
1604
+ "wasm-bindgen-macro",
1605
+ "wasm-bindgen-shared",
1606
+]
1607
+
1608
+[[package]]
1609
+name = "wasm-bindgen-macro"
1610
+version = "0.2.108"
1611
+source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1613
+dependencies = [
1614
+ "quote",
1615
+ "wasm-bindgen-macro-support",
1616
+]
1617
+
1618
+[[package]]
1619
+name = "wasm-bindgen-macro-support"
1620
+version = "0.2.108"
1621
+source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1623
+dependencies = [
1624
+ "bumpalo",
1625
+ "proc-macro2",
1626
+ "quote",
1627
+ "syn 2.0.114",
1628
+ "wasm-bindgen-shared",
1629
+]
1630
+
1631
+[[package]]
1632
+name = "wasm-bindgen-shared"
1633
+version = "0.2.108"
1634
+source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1636
+dependencies = [
1637
+ "unicode-ident",
1638
+]
1639
+
15041640
 [[package]]
15051641
 name = "weezl"
15061642
 version = "0.1.12"
@@ -1529,12 +1665,65 @@ version = "0.4.0"
15291665
 source = "registry+https://github.com/rust-lang/crates.io-index"
15301666
 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
15311667
 
1668
+[[package]]
1669
+name = "windows-core"
1670
+version = "0.62.2"
1671
+source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1673
+dependencies = [
1674
+ "windows-implement",
1675
+ "windows-interface",
1676
+ "windows-link",
1677
+ "windows-result",
1678
+ "windows-strings",
1679
+]
1680
+
1681
+[[package]]
1682
+name = "windows-implement"
1683
+version = "0.60.2"
1684
+source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1686
+dependencies = [
1687
+ "proc-macro2",
1688
+ "quote",
1689
+ "syn 2.0.114",
1690
+]
1691
+
1692
+[[package]]
1693
+name = "windows-interface"
1694
+version = "0.59.3"
1695
+source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1697
+dependencies = [
1698
+ "proc-macro2",
1699
+ "quote",
1700
+ "syn 2.0.114",
1701
+]
1702
+
15321703
 [[package]]
15331704
 name = "windows-link"
15341705
 version = "0.2.1"
15351706
 source = "registry+https://github.com/rust-lang/crates.io-index"
15361707
 checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
15371708
 
1709
+[[package]]
1710
+name = "windows-result"
1711
+version = "0.4.1"
1712
+source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1714
+dependencies = [
1715
+ "windows-link",
1716
+]
1717
+
1718
+[[package]]
1719
+name = "windows-strings"
1720
+version = "0.5.1"
1721
+source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1723
+dependencies = [
1724
+ "windows-link",
1725
+]
1726
+
15381727
 [[package]]
15391728
 name = "windows-sys"
15401729
 version = "0.48.0"
Cargo.tomlmodified
@@ -54,3 +54,4 @@ xkbcommon = "0.8"
5454
 # Utilities
5555
 dirs = "5.0"
5656
 users = "0.11"
57
+chrono = "0.4"