summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock254
1 files changed, 239 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 09c9843..e72016e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -18,12 +18,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 18checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19 19
20[[package]] 20[[package]]
21name = "aho-corasick"
22version = "1.1.3"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25dependencies = [
26 "memchr",
27]
28
29[[package]]
21name = "anyhow" 30name = "anyhow"
22version = "1.0.86" 31version = "1.0.86"
23source = "registry+https://github.com/rust-lang/crates.io-index" 32source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 33checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
25 34
26[[package]] 35[[package]]
36name = "arps"
37version = "0.1.0"
38dependencies = [
39 "anyhow",
40 "color-eyre",
41 "config",
42 "gethostname",
43 "serde",
44 "serde_json",
45 "thiserror",
46 "toml",
47 "tracing",
48 "tracing-appender",
49 "tracing-subscriber",
50 "uuid",
51]
52
53[[package]]
27name = "async-trait" 54name = "async-trait"
28version = "0.1.82" 55version = "0.1.82"
29source = "registry+https://github.com/rust-lang/crates.io-index" 56source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -174,6 +201,21 @@ dependencies = [
174] 201]
175 202
176[[package]] 203[[package]]
204name = "crossbeam-channel"
205version = "0.5.13"
206source = "registry+https://github.com/rust-lang/crates.io-index"
207checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
208dependencies = [
209 "crossbeam-utils",
210]
211
212[[package]]
213name = "crossbeam-utils"
214version = "0.8.20"
215source = "registry+https://github.com/rust-lang/crates.io-index"
216checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
217
218[[package]]
177name = "crunchy" 219name = "crunchy"
178version = "0.2.2" 220version = "0.2.2"
179source = "registry+https://github.com/rust-lang/crates.io-index" 221source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -190,6 +232,15 @@ dependencies = [
190] 232]
191 233
192[[package]] 234[[package]]
235name = "deranged"
236version = "0.3.11"
237source = "registry+https://github.com/rust-lang/crates.io-index"
238checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
239dependencies = [
240 "powerfmt",
241]
242
243[[package]]
193name = "digest" 244name = "digest"
194version = "0.10.7" 245version = "0.10.7"
195source = "registry+https://github.com/rust-lang/crates.io-index" 246source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -235,21 +286,6 @@ dependencies = [
235] 286]
236 287
237[[package]] 288[[package]]
238name = "fxbaup"
239version = "0.1.0"
240dependencies = [
241 "anyhow",
242 "color-eyre",
243 "config",
244 "gethostname",
245 "serde",
246 "serde_json",
247 "thiserror",
248 "toml",
249 "uuid",
250]
251
252[[package]]
253name = "generic-array" 289name = "generic-array"
254version = "0.14.7" 290version = "0.14.7"
255source = "registry+https://github.com/rust-lang/crates.io-index" 291source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -356,6 +392,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
356checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" 392checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
357 393
358[[package]] 394[[package]]
395name = "log"
396version = "0.4.22"
397source = "registry+https://github.com/rust-lang/crates.io-index"
398checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
399
400[[package]]
401name = "matchers"
402version = "0.1.0"
403source = "registry+https://github.com/rust-lang/crates.io-index"
404checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
405dependencies = [
406 "regex-automata 0.1.10",
407]
408
409[[package]]
359name = "memchr" 410name = "memchr"
360version = "2.7.4" 411version = "2.7.4"
361source = "registry+https://github.com/rust-lang/crates.io-index" 412source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -387,6 +438,22 @@ dependencies = [
387] 438]
388 439
389[[package]] 440[[package]]
441name = "nu-ansi-term"
442version = "0.46.0"
443source = "registry+https://github.com/rust-lang/crates.io-index"
444checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
445dependencies = [
446 "overload",
447 "winapi",
448]
449
450[[package]]
451name = "num-conv"
452version = "0.1.0"
453source = "registry+https://github.com/rust-lang/crates.io-index"
454checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
455
456[[package]]
390name = "object" 457name = "object"
391version = "0.32.2" 458version = "0.32.2"
392source = "registry+https://github.com/rust-lang/crates.io-index" 459source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -412,6 +479,12 @@ dependencies = [
412] 479]
413 480
414[[package]] 481[[package]]
482name = "overload"
483version = "0.1.1"
484source = "registry+https://github.com/rust-lang/crates.io-index"
485checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
486
487[[package]]
415name = "owo-colors" 488name = "owo-colors"
416version = "3.5.0" 489version = "3.5.0"
417source = "registry+https://github.com/rust-lang/crates.io-index" 490source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -475,6 +548,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
475checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 548checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
476 549
477[[package]] 550[[package]]
551name = "powerfmt"
552version = "0.2.0"
553source = "registry+https://github.com/rust-lang/crates.io-index"
554checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
555
556[[package]]
478name = "proc-macro2" 557name = "proc-macro2"
479version = "1.0.86" 558version = "1.0.86"
480source = "registry+https://github.com/rust-lang/crates.io-index" 559source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -493,6 +572,50 @@ dependencies = [
493] 572]
494 573
495[[package]] 574[[package]]
575name = "regex"
576version = "1.10.6"
577source = "registry+https://github.com/rust-lang/crates.io-index"
578checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
579dependencies = [
580 "aho-corasick",
581 "memchr",
582 "regex-automata 0.4.7",
583 "regex-syntax 0.8.4",
584]
585
586[[package]]
587name = "regex-automata"
588version = "0.1.10"
589source = "registry+https://github.com/rust-lang/crates.io-index"
590checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
591dependencies = [
592 "regex-syntax 0.6.29",
593]
594
595[[package]]
596name = "regex-automata"
597version = "0.4.7"
598source = "registry+https://github.com/rust-lang/crates.io-index"
599checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
600dependencies = [
601 "aho-corasick",
602 "memchr",
603 "regex-syntax 0.8.4",
604]
605
606[[package]]
607name = "regex-syntax"
608version = "0.6.29"
609source = "registry+https://github.com/rust-lang/crates.io-index"
610checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
611
612[[package]]
613name = "regex-syntax"
614version = "0.8.4"
615source = "registry+https://github.com/rust-lang/crates.io-index"
616checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
617
618[[package]]
496name = "ron" 619name = "ron"
497version = "0.8.1" 620version = "0.8.1"
498source = "registry+https://github.com/rust-lang/crates.io-index" 621source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -607,6 +730,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
607checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 730checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
608 731
609[[package]] 732[[package]]
733name = "smallvec"
734version = "1.13.2"
735source = "registry+https://github.com/rust-lang/crates.io-index"
736checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
737
738[[package]]
610name = "syn" 739name = "syn"
611version = "2.0.77" 740version = "2.0.77"
612source = "registry+https://github.com/rust-lang/crates.io-index" 741source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -648,6 +777,37 @@ dependencies = [
648] 777]
649 778
650[[package]] 779[[package]]
780name = "time"
781version = "0.3.36"
782source = "registry+https://github.com/rust-lang/crates.io-index"
783checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
784dependencies = [
785 "deranged",
786 "itoa",
787 "num-conv",
788 "powerfmt",
789 "serde",
790 "time-core",
791 "time-macros",
792]
793
794[[package]]
795name = "time-core"
796version = "0.1.2"
797source = "registry+https://github.com/rust-lang/crates.io-index"
798checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
799
800[[package]]
801name = "time-macros"
802version = "0.2.18"
803source = "registry+https://github.com/rust-lang/crates.io-index"
804checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
805dependencies = [
806 "num-conv",
807 "time-core",
808]
809
810[[package]]
651name = "tiny-keccak" 811name = "tiny-keccak"
652version = "2.0.2" 812version = "2.0.2"
653source = "registry+https://github.com/rust-lang/crates.io-index" 813source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -697,10 +857,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
697checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 857checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
698dependencies = [ 858dependencies = [
699 "pin-project-lite", 859 "pin-project-lite",
860 "tracing-attributes",
700 "tracing-core", 861 "tracing-core",
701] 862]
702 863
703[[package]] 864[[package]]
865name = "tracing-appender"
866version = "0.2.3"
867source = "registry+https://github.com/rust-lang/crates.io-index"
868checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
869dependencies = [
870 "crossbeam-channel",
871 "thiserror",
872 "time",
873 "tracing-subscriber",
874]
875
876[[package]]
877name = "tracing-attributes"
878version = "0.1.27"
879source = "registry+https://github.com/rust-lang/crates.io-index"
880checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
881dependencies = [
882 "proc-macro2",
883 "quote",
884 "syn",
885]
886
887[[package]]
704name = "tracing-core" 888name = "tracing-core"
705version = "0.1.32" 889version = "0.1.32"
706source = "registry+https://github.com/rust-lang/crates.io-index" 890source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -721,14 +905,32 @@ dependencies = [
721] 905]
722 906
723[[package]] 907[[package]]
908name = "tracing-log"
909version = "0.2.0"
910source = "registry+https://github.com/rust-lang/crates.io-index"
911checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
912dependencies = [
913 "log",
914 "once_cell",
915 "tracing-core",
916]
917
918[[package]]
724name = "tracing-subscriber" 919name = "tracing-subscriber"
725version = "0.3.18" 920version = "0.3.18"
726source = "registry+https://github.com/rust-lang/crates.io-index" 921source = "registry+https://github.com/rust-lang/crates.io-index"
727checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" 922checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
728dependencies = [ 923dependencies = [
924 "matchers",
925 "nu-ansi-term",
926 "once_cell",
927 "regex",
729 "sharded-slab", 928 "sharded-slab",
929 "smallvec",
730 "thread_local", 930 "thread_local",
931 "tracing",
731 "tracing-core", 932 "tracing-core",
933 "tracing-log",
732] 934]
733 935
734[[package]] 936[[package]]
@@ -783,6 +985,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
783checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 985checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
784 986
785[[package]] 987[[package]]
988name = "winapi"
989version = "0.3.9"
990source = "registry+https://github.com/rust-lang/crates.io-index"
991checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
992dependencies = [
993 "winapi-i686-pc-windows-gnu",
994 "winapi-x86_64-pc-windows-gnu",
995]
996
997[[package]]
998name = "winapi-i686-pc-windows-gnu"
999version = "0.4.0"
1000source = "registry+https://github.com/rust-lang/crates.io-index"
1001checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1002
1003[[package]]
1004name = "winapi-x86_64-pc-windows-gnu"
1005version = "0.4.0"
1006source = "registry+https://github.com/rust-lang/crates.io-index"
1007checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1008
1009[[package]]
786name = "windows-sys" 1010name = "windows-sys"
787version = "0.52.0" 1011version = "0.52.0"
788source = "registry+https://github.com/rust-lang/crates.io-index" 1012source = "registry+https://github.com/rust-lang/crates.io-index"