summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock310
1 files changed, 310 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ef301aa..09c9843 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,6 +3,21 @@
3version = 3 3version = 3
4 4
5[[package]] 5[[package]]
6name = "addr2line"
7version = "0.21.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
10dependencies = [
11 "gimli",
12]
13
14[[package]]
15name = "adler"
16version = "1.0.2"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
20[[package]]
6name = "anyhow" 21name = "anyhow"
7version = "1.0.86" 22version = "1.0.86"
8source = "registry+https://github.com/rust-lang/crates.io-index" 23source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -20,6 +35,21 @@ dependencies = [
20] 35]
21 36
22[[package]] 37[[package]]
38name = "backtrace"
39version = "0.3.71"
40source = "registry+https://github.com/rust-lang/crates.io-index"
41checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
42dependencies = [
43 "addr2line",
44 "cc",
45 "cfg-if",
46 "libc",
47 "miniz_oxide",
48 "object",
49 "rustc-demangle",
50]
51
52[[package]]
23name = "base64" 53name = "base64"
24version = "0.21.7" 54version = "0.21.7"
25source = "registry+https://github.com/rust-lang/crates.io-index" 55source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -44,12 +74,48 @@ dependencies = [
44] 74]
45 75
46[[package]] 76[[package]]
77name = "cc"
78version = "1.1.16"
79source = "registry+https://github.com/rust-lang/crates.io-index"
80checksum = "e9d013ecb737093c0e86b151a7b837993cf9ec6c502946cfb44bedc392421e0b"
81dependencies = [
82 "shlex",
83]
84
85[[package]]
47name = "cfg-if" 86name = "cfg-if"
48version = "1.0.0" 87version = "1.0.0"
49source = "registry+https://github.com/rust-lang/crates.io-index" 88source = "registry+https://github.com/rust-lang/crates.io-index"
50checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 89checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
51 90
52[[package]] 91[[package]]
92name = "color-eyre"
93version = "0.6.3"
94source = "registry+https://github.com/rust-lang/crates.io-index"
95checksum = "55146f5e46f237f7423d74111267d4597b59b0dad0ffaf7303bce9945d843ad5"
96dependencies = [
97 "backtrace",
98 "color-spantrace",
99 "eyre",
100 "indenter",
101 "once_cell",
102 "owo-colors",
103 "tracing-error",
104]
105
106[[package]]
107name = "color-spantrace"
108version = "0.2.1"
109source = "registry+https://github.com/rust-lang/crates.io-index"
110checksum = "cd6be1b2a7e382e2b98b43b2adcca6bb0e465af0bdd38123873ae61eb17a72c2"
111dependencies = [
112 "once_cell",
113 "owo-colors",
114 "tracing-core",
115 "tracing-error",
116]
117
118[[package]]
53name = "config" 119name = "config"
54version = "0.14.0" 120version = "0.14.0"
55source = "registry+https://github.com/rust-lang/crates.io-index" 121source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -149,11 +215,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
149checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 215checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
150 216
151[[package]] 217[[package]]
218name = "errno"
219version = "0.3.9"
220source = "registry+https://github.com/rust-lang/crates.io-index"
221checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
222dependencies = [
223 "libc",
224 "windows-sys",
225]
226
227[[package]]
228name = "eyre"
229version = "0.6.12"
230source = "registry+https://github.com/rust-lang/crates.io-index"
231checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
232dependencies = [
233 "indenter",
234 "once_cell",
235]
236
237[[package]]
152name = "fxbaup" 238name = "fxbaup"
153version = "0.1.0" 239version = "0.1.0"
154dependencies = [ 240dependencies = [
155 "anyhow", 241 "anyhow",
242 "color-eyre",
156 "config", 243 "config",
244 "gethostname",
157 "serde", 245 "serde",
158 "serde_json", 246 "serde_json",
159 "thiserror", 247 "thiserror",
@@ -172,6 +260,16 @@ dependencies = [
172] 260]
173 261
174[[package]] 262[[package]]
263name = "gethostname"
264version = "0.5.0"
265source = "registry+https://github.com/rust-lang/crates.io-index"
266checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30"
267dependencies = [
268 "rustix",
269 "windows-targets",
270]
271
272[[package]]
175name = "getrandom" 273name = "getrandom"
176version = "0.2.15" 274version = "0.2.15"
177source = "registry+https://github.com/rust-lang/crates.io-index" 275source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -183,6 +281,12 @@ dependencies = [
183] 281]
184 282
185[[package]] 283[[package]]
284name = "gimli"
285version = "0.28.1"
286source = "registry+https://github.com/rust-lang/crates.io-index"
287checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
288
289[[package]]
186name = "hashbrown" 290name = "hashbrown"
187version = "0.13.2" 291version = "0.13.2"
188source = "registry+https://github.com/rust-lang/crates.io-index" 292source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -195,6 +299,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
195checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 299checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
196 300
197[[package]] 301[[package]]
302name = "indenter"
303version = "0.3.3"
304source = "registry+https://github.com/rust-lang/crates.io-index"
305checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
306
307[[package]]
198name = "indexmap" 308name = "indexmap"
199version = "2.5.0" 309version = "2.5.0"
200source = "registry+https://github.com/rust-lang/crates.io-index" 310source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -240,6 +350,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
240checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 350checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
241 351
242[[package]] 352[[package]]
353name = "linux-raw-sys"
354version = "0.4.14"
355source = "registry+https://github.com/rust-lang/crates.io-index"
356checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
357
358[[package]]
243name = "memchr" 359name = "memchr"
244version = "2.7.4" 360version = "2.7.4"
245source = "registry+https://github.com/rust-lang/crates.io-index" 361source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -252,6 +368,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
252checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 368checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
253 369
254[[package]] 370[[package]]
371name = "miniz_oxide"
372version = "0.7.4"
373source = "registry+https://github.com/rust-lang/crates.io-index"
374checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
375dependencies = [
376 "adler",
377]
378
379[[package]]
255name = "nom" 380name = "nom"
256version = "7.1.3" 381version = "7.1.3"
257source = "registry+https://github.com/rust-lang/crates.io-index" 382source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -262,6 +387,15 @@ dependencies = [
262] 387]
263 388
264[[package]] 389[[package]]
390name = "object"
391version = "0.32.2"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
394dependencies = [
395 "memchr",
396]
397
398[[package]]
265name = "once_cell" 399name = "once_cell"
266version = "1.19.0" 400version = "1.19.0"
267source = "registry+https://github.com/rust-lang/crates.io-index" 401source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -278,6 +412,12 @@ dependencies = [
278] 412]
279 413
280[[package]] 414[[package]]
415name = "owo-colors"
416version = "3.5.0"
417source = "registry+https://github.com/rust-lang/crates.io-index"
418checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
419
420[[package]]
281name = "pathdiff" 421name = "pathdiff"
282version = "0.2.1" 422version = "0.2.1"
283source = "registry+https://github.com/rust-lang/crates.io-index" 423source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -329,6 +469,12 @@ dependencies = [
329] 469]
330 470
331[[package]] 471[[package]]
472name = "pin-project-lite"
473version = "0.2.14"
474source = "registry+https://github.com/rust-lang/crates.io-index"
475checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
476
477[[package]]
332name = "proc-macro2" 478name = "proc-macro2"
333version = "1.0.86" 479version = "1.0.86"
334source = "registry+https://github.com/rust-lang/crates.io-index" 480source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -369,6 +515,25 @@ dependencies = [
369] 515]
370 516
371[[package]] 517[[package]]
518name = "rustc-demangle"
519version = "0.1.24"
520source = "registry+https://github.com/rust-lang/crates.io-index"
521checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
522
523[[package]]
524name = "rustix"
525version = "0.38.36"
526source = "registry+https://github.com/rust-lang/crates.io-index"
527checksum = "3f55e80d50763938498dd5ebb18647174e0c76dc38c5505294bb224624f30f36"
528dependencies = [
529 "bitflags",
530 "errno",
531 "libc",
532 "linux-raw-sys",
533 "windows-sys",
534]
535
536[[package]]
372name = "ryu" 537name = "ryu"
373version = "1.0.18" 538version = "1.0.18"
374source = "registry+https://github.com/rust-lang/crates.io-index" 539source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -427,6 +592,21 @@ dependencies = [
427] 592]
428 593
429[[package]] 594[[package]]
595name = "sharded-slab"
596version = "0.1.7"
597source = "registry+https://github.com/rust-lang/crates.io-index"
598checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
599dependencies = [
600 "lazy_static",
601]
602
603[[package]]
604name = "shlex"
605version = "1.3.0"
606source = "registry+https://github.com/rust-lang/crates.io-index"
607checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
608
609[[package]]
430name = "syn" 610name = "syn"
431version = "2.0.77" 611version = "2.0.77"
432source = "registry+https://github.com/rust-lang/crates.io-index" 612source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -458,6 +638,16 @@ dependencies = [
458] 638]
459 639
460[[package]] 640[[package]]
641name = "thread_local"
642version = "1.1.8"
643source = "registry+https://github.com/rust-lang/crates.io-index"
644checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
645dependencies = [
646 "cfg-if",
647 "once_cell",
648]
649
650[[package]]
461name = "tiny-keccak" 651name = "tiny-keccak"
462version = "2.0.2" 652version = "2.0.2"
463source = "registry+https://github.com/rust-lang/crates.io-index" 653source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -501,6 +691,47 @@ dependencies = [
501] 691]
502 692
503[[package]] 693[[package]]
694name = "tracing"
695version = "0.1.40"
696source = "registry+https://github.com/rust-lang/crates.io-index"
697checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
698dependencies = [
699 "pin-project-lite",
700 "tracing-core",
701]
702
703[[package]]
704name = "tracing-core"
705version = "0.1.32"
706source = "registry+https://github.com/rust-lang/crates.io-index"
707checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
708dependencies = [
709 "once_cell",
710 "valuable",
711]
712
713[[package]]
714name = "tracing-error"
715version = "0.2.0"
716source = "registry+https://github.com/rust-lang/crates.io-index"
717checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
718dependencies = [
719 "tracing",
720 "tracing-subscriber",
721]
722
723[[package]]
724name = "tracing-subscriber"
725version = "0.3.18"
726source = "registry+https://github.com/rust-lang/crates.io-index"
727checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
728dependencies = [
729 "sharded-slab",
730 "thread_local",
731 "tracing-core",
732]
733
734[[package]]
504name = "typenum" 735name = "typenum"
505version = "1.17.0" 736version = "1.17.0"
506source = "registry+https://github.com/rust-lang/crates.io-index" 737source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -534,6 +765,12 @@ dependencies = [
534] 765]
535 766
536[[package]] 767[[package]]
768name = "valuable"
769version = "0.1.0"
770source = "registry+https://github.com/rust-lang/crates.io-index"
771checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
772
773[[package]]
537name = "version_check" 774name = "version_check"
538version = "0.9.5" 775version = "0.9.5"
539source = "registry+https://github.com/rust-lang/crates.io-index" 776source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -546,6 +783,79 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
546checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 783checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
547 784
548[[package]] 785[[package]]
786name = "windows-sys"
787version = "0.52.0"
788source = "registry+https://github.com/rust-lang/crates.io-index"
789checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
790dependencies = [
791 "windows-targets",
792]
793
794[[package]]
795name = "windows-targets"
796version = "0.52.6"
797source = "registry+https://github.com/rust-lang/crates.io-index"
798checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
799dependencies = [
800 "windows_aarch64_gnullvm",
801 "windows_aarch64_msvc",
802 "windows_i686_gnu",
803 "windows_i686_gnullvm",
804 "windows_i686_msvc",
805 "windows_x86_64_gnu",
806 "windows_x86_64_gnullvm",
807 "windows_x86_64_msvc",
808]
809
810[[package]]
811name = "windows_aarch64_gnullvm"
812version = "0.52.6"
813source = "registry+https://github.com/rust-lang/crates.io-index"
814checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
815
816[[package]]
817name = "windows_aarch64_msvc"
818version = "0.52.6"
819source = "registry+https://github.com/rust-lang/crates.io-index"
820checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
821
822[[package]]
823name = "windows_i686_gnu"
824version = "0.52.6"
825source = "registry+https://github.com/rust-lang/crates.io-index"
826checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
827
828[[package]]
829name = "windows_i686_gnullvm"
830version = "0.52.6"
831source = "registry+https://github.com/rust-lang/crates.io-index"
832checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
833
834[[package]]
835name = "windows_i686_msvc"
836version = "0.52.6"
837source = "registry+https://github.com/rust-lang/crates.io-index"
838checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
839
840[[package]]
841name = "windows_x86_64_gnu"
842version = "0.52.6"
843source = "registry+https://github.com/rust-lang/crates.io-index"
844checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
845
846[[package]]
847name = "windows_x86_64_gnullvm"
848version = "0.52.6"
849source = "registry+https://github.com/rust-lang/crates.io-index"
850checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
851
852[[package]]
853name = "windows_x86_64_msvc"
854version = "0.52.6"
855source = "registry+https://github.com/rust-lang/crates.io-index"
856checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
857
858[[package]]
549name = "winnow" 859name = "winnow"
550version = "0.6.18" 860version = "0.6.18"
551source = "registry+https://github.com/rust-lang/crates.io-index" 861source = "registry+https://github.com/rust-lang/crates.io-index"