summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock267
1 files changed, 243 insertions, 24 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5027c92..95d4a49 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -27,6 +27,55 @@ dependencies = [
27] 27]
28 28
29[[package]] 29[[package]]
30name = "anstream"
31version = "0.6.15"
32source = "registry+https://github.com/rust-lang/crates.io-index"
33checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
34dependencies = [
35 "anstyle",
36 "anstyle-parse",
37 "anstyle-query",
38 "anstyle-wincon",
39 "colorchoice",
40 "is_terminal_polyfill",
41 "utf8parse",
42]
43
44[[package]]
45name = "anstyle"
46version = "1.0.8"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
49
50[[package]]
51name = "anstyle-parse"
52version = "0.2.5"
53source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
55dependencies = [
56 "utf8parse",
57]
58
59[[package]]
60name = "anstyle-query"
61version = "1.1.1"
62source = "registry+https://github.com/rust-lang/crates.io-index"
63checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
64dependencies = [
65 "windows-sys 0.52.0",
66]
67
68[[package]]
69name = "anstyle-wincon"
70version = "3.0.4"
71source = "registry+https://github.com/rust-lang/crates.io-index"
72checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
73dependencies = [
74 "anstyle",
75 "windows-sys 0.52.0",
76]
77
78[[package]]
30name = "anyhow" 79name = "anyhow"
31version = "1.0.86" 80version = "1.0.86"
32source = "registry+https://github.com/rust-lang/crates.io-index" 81source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -37,8 +86,10 @@ name = "arbs"
37version = "0.1.0" 86version = "0.1.0"
38dependencies = [ 87dependencies = [
39 "anyhow", 88 "anyhow",
89 "clap",
40 "color-eyre", 90 "color-eyre",
41 "config", 91 "config",
92 "dirs",
42 "gethostname", 93 "gethostname",
43 "serde", 94 "serde",
44 "serde_json", 95 "serde_json",
@@ -116,6 +167,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
116checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 167checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
117 168
118[[package]] 169[[package]]
170name = "clap"
171version = "4.5.17"
172source = "registry+https://github.com/rust-lang/crates.io-index"
173checksum = "3e5a21b8495e732f1b3c364c9949b201ca7bae518c502c80256c96ad79eaf6ac"
174dependencies = [
175 "clap_builder",
176 "clap_derive",
177]
178
179[[package]]
180name = "clap_builder"
181version = "4.5.17"
182source = "registry+https://github.com/rust-lang/crates.io-index"
183checksum = "8cf2dd12af7a047ad9d6da2b6b249759a22a7abc0f474c1dae1777afa4b21a73"
184dependencies = [
185 "anstream",
186 "anstyle",
187 "clap_lex",
188 "strsim",
189]
190
191[[package]]
192name = "clap_derive"
193version = "4.5.13"
194source = "registry+https://github.com/rust-lang/crates.io-index"
195checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
196dependencies = [
197 "heck",
198 "proc-macro2",
199 "quote",
200 "syn",
201]
202
203[[package]]
204name = "clap_lex"
205version = "0.7.2"
206source = "registry+https://github.com/rust-lang/crates.io-index"
207checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
208
209[[package]]
119name = "color-eyre" 210name = "color-eyre"
120version = "0.6.3" 211version = "0.6.3"
121source = "registry+https://github.com/rust-lang/crates.io-index" 212source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -143,6 +234,12 @@ dependencies = [
143] 234]
144 235
145[[package]] 236[[package]]
237name = "colorchoice"
238version = "1.0.2"
239source = "registry+https://github.com/rust-lang/crates.io-index"
240checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
241
242[[package]]
146name = "config" 243name = "config"
147version = "0.14.0" 244version = "0.14.0"
148source = "registry+https://github.com/rust-lang/crates.io-index" 245source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -159,7 +256,6 @@ dependencies = [
159 "serde", 256 "serde",
160 "serde_json", 257 "serde_json",
161 "toml", 258 "toml",
162 "yaml-rust",
163] 259]
164 260
165[[package]] 261[[package]]
@@ -251,6 +347,27 @@ dependencies = [
251] 347]
252 348
253[[package]] 349[[package]]
350name = "dirs"
351version = "5.0.1"
352source = "registry+https://github.com/rust-lang/crates.io-index"
353checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
354dependencies = [
355 "dirs-sys",
356]
357
358[[package]]
359name = "dirs-sys"
360version = "0.4.1"
361source = "registry+https://github.com/rust-lang/crates.io-index"
362checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
363dependencies = [
364 "libc",
365 "option-ext",
366 "redox_users",
367 "windows-sys 0.48.0",
368]
369
370[[package]]
254name = "dlv-list" 371name = "dlv-list"
255version = "0.5.2" 372version = "0.5.2"
256source = "registry+https://github.com/rust-lang/crates.io-index" 373source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -272,7 +389,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
272checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 389checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
273dependencies = [ 390dependencies = [
274 "libc", 391 "libc",
275 "windows-sys", 392 "windows-sys 0.52.0",
276] 393]
277 394
278[[package]] 395[[package]]
@@ -302,7 +419,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
302checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30" 419checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30"
303dependencies = [ 420dependencies = [
304 "rustix", 421 "rustix",
305 "windows-targets", 422 "windows-targets 0.52.6",
306] 423]
307 424
308[[package]] 425[[package]]
@@ -335,6 +452,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
335checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 452checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
336 453
337[[package]] 454[[package]]
455name = "heck"
456version = "0.5.0"
457source = "registry+https://github.com/rust-lang/crates.io-index"
458checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
459
460[[package]]
338name = "indenter" 461name = "indenter"
339version = "0.3.3" 462version = "0.3.3"
340source = "registry+https://github.com/rust-lang/crates.io-index" 463source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -351,6 +474,12 @@ dependencies = [
351] 474]
352 475
353[[package]] 476[[package]]
477name = "is_terminal_polyfill"
478version = "1.70.1"
479source = "registry+https://github.com/rust-lang/crates.io-index"
480checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
481
482[[package]]
354name = "itoa" 483name = "itoa"
355version = "1.0.11" 484version = "1.0.11"
356source = "registry+https://github.com/rust-lang/crates.io-index" 485source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -380,10 +509,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
380checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" 509checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
381 510
382[[package]] 511[[package]]
383name = "linked-hash-map" 512name = "libredox"
384version = "0.5.6" 513version = "0.1.3"
385source = "registry+https://github.com/rust-lang/crates.io-index" 514source = "registry+https://github.com/rust-lang/crates.io-index"
386checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 515checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
516dependencies = [
517 "bitflags",
518 "libc",
519]
387 520
388[[package]] 521[[package]]
389name = "linux-raw-sys" 522name = "linux-raw-sys"
@@ -469,6 +602,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
469checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 602checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
470 603
471[[package]] 604[[package]]
605name = "option-ext"
606version = "0.2.0"
607source = "registry+https://github.com/rust-lang/crates.io-index"
608checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
609
610[[package]]
472name = "ordered-multimap" 611name = "ordered-multimap"
473version = "0.6.0" 612version = "0.6.0"
474source = "registry+https://github.com/rust-lang/crates.io-index" 613source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -572,6 +711,17 @@ dependencies = [
572] 711]
573 712
574[[package]] 713[[package]]
714name = "redox_users"
715version = "0.4.6"
716source = "registry+https://github.com/rust-lang/crates.io-index"
717checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
718dependencies = [
719 "getrandom",
720 "libredox",
721 "thiserror",
722]
723
724[[package]]
575name = "regex" 725name = "regex"
576version = "1.10.6" 726version = "1.10.6"
577source = "registry+https://github.com/rust-lang/crates.io-index" 727source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -653,7 +803,7 @@ dependencies = [
653 "errno", 803 "errno",
654 "libc", 804 "libc",
655 "linux-raw-sys", 805 "linux-raw-sys",
656 "windows-sys", 806 "windows-sys 0.52.0",
657] 807]
658 808
659[[package]] 809[[package]]
@@ -736,6 +886,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
736checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 886checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
737 887
738[[package]] 888[[package]]
889name = "strsim"
890version = "0.11.1"
891source = "registry+https://github.com/rust-lang/crates.io-index"
892checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
893
894[[package]]
739name = "syn" 895name = "syn"
740version = "2.0.77" 896version = "2.0.77"
741source = "registry+https://github.com/rust-lang/crates.io-index" 897source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -958,6 +1114,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
958checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 1114checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
959 1115
960[[package]] 1116[[package]]
1117name = "utf8parse"
1118version = "0.2.2"
1119source = "registry+https://github.com/rust-lang/crates.io-index"
1120checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1121
1122[[package]]
961name = "uuid" 1123name = "uuid"
962version = "1.10.0" 1124version = "1.10.0"
963source = "registry+https://github.com/rust-lang/crates.io-index" 1125source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1008,11 +1170,35 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1008 1170
1009[[package]] 1171[[package]]
1010name = "windows-sys" 1172name = "windows-sys"
1173version = "0.48.0"
1174source = "registry+https://github.com/rust-lang/crates.io-index"
1175checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1176dependencies = [
1177 "windows-targets 0.48.5",
1178]
1179
1180[[package]]
1181name = "windows-sys"
1011version = "0.52.0" 1182version = "0.52.0"
1012source = "registry+https://github.com/rust-lang/crates.io-index" 1183source = "registry+https://github.com/rust-lang/crates.io-index"
1013checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1184checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1014dependencies = [ 1185dependencies = [
1015 "windows-targets", 1186 "windows-targets 0.52.6",
1187]
1188
1189[[package]]
1190name = "windows-targets"
1191version = "0.48.5"
1192source = "registry+https://github.com/rust-lang/crates.io-index"
1193checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1194dependencies = [
1195 "windows_aarch64_gnullvm 0.48.5",
1196 "windows_aarch64_msvc 0.48.5",
1197 "windows_i686_gnu 0.48.5",
1198 "windows_i686_msvc 0.48.5",
1199 "windows_x86_64_gnu 0.48.5",
1200 "windows_x86_64_gnullvm 0.48.5",
1201 "windows_x86_64_msvc 0.48.5",
1016] 1202]
1017 1203
1018[[package]] 1204[[package]]
@@ -1021,30 +1207,48 @@ version = "0.52.6"
1021source = "registry+https://github.com/rust-lang/crates.io-index" 1207source = "registry+https://github.com/rust-lang/crates.io-index"
1022checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1208checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1023dependencies = [ 1209dependencies = [
1024 "windows_aarch64_gnullvm", 1210 "windows_aarch64_gnullvm 0.52.6",
1025 "windows_aarch64_msvc", 1211 "windows_aarch64_msvc 0.52.6",
1026 "windows_i686_gnu", 1212 "windows_i686_gnu 0.52.6",
1027 "windows_i686_gnullvm", 1213 "windows_i686_gnullvm",
1028 "windows_i686_msvc", 1214 "windows_i686_msvc 0.52.6",
1029 "windows_x86_64_gnu", 1215 "windows_x86_64_gnu 0.52.6",
1030 "windows_x86_64_gnullvm", 1216 "windows_x86_64_gnullvm 0.52.6",
1031 "windows_x86_64_msvc", 1217 "windows_x86_64_msvc 0.52.6",
1032] 1218]
1033 1219
1034[[package]] 1220[[package]]
1035name = "windows_aarch64_gnullvm" 1221name = "windows_aarch64_gnullvm"
1222version = "0.48.5"
1223source = "registry+https://github.com/rust-lang/crates.io-index"
1224checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1225
1226[[package]]
1227name = "windows_aarch64_gnullvm"
1036version = "0.52.6" 1228version = "0.52.6"
1037source = "registry+https://github.com/rust-lang/crates.io-index" 1229source = "registry+https://github.com/rust-lang/crates.io-index"
1038checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1230checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1039 1231
1040[[package]] 1232[[package]]
1041name = "windows_aarch64_msvc" 1233name = "windows_aarch64_msvc"
1234version = "0.48.5"
1235source = "registry+https://github.com/rust-lang/crates.io-index"
1236checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1237
1238[[package]]
1239name = "windows_aarch64_msvc"
1042version = "0.52.6" 1240version = "0.52.6"
1043source = "registry+https://github.com/rust-lang/crates.io-index" 1241source = "registry+https://github.com/rust-lang/crates.io-index"
1044checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1242checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1045 1243
1046[[package]] 1244[[package]]
1047name = "windows_i686_gnu" 1245name = "windows_i686_gnu"
1246version = "0.48.5"
1247source = "registry+https://github.com/rust-lang/crates.io-index"
1248checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1249
1250[[package]]
1251name = "windows_i686_gnu"
1048version = "0.52.6" 1252version = "0.52.6"
1049source = "registry+https://github.com/rust-lang/crates.io-index" 1253source = "registry+https://github.com/rust-lang/crates.io-index"
1050checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1254checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
@@ -1057,24 +1261,48 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1057 1261
1058[[package]] 1262[[package]]
1059name = "windows_i686_msvc" 1263name = "windows_i686_msvc"
1264version = "0.48.5"
1265source = "registry+https://github.com/rust-lang/crates.io-index"
1266checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1267
1268[[package]]
1269name = "windows_i686_msvc"
1060version = "0.52.6" 1270version = "0.52.6"
1061source = "registry+https://github.com/rust-lang/crates.io-index" 1271source = "registry+https://github.com/rust-lang/crates.io-index"
1062checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1272checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1063 1273
1064[[package]] 1274[[package]]
1065name = "windows_x86_64_gnu" 1275name = "windows_x86_64_gnu"
1276version = "0.48.5"
1277source = "registry+https://github.com/rust-lang/crates.io-index"
1278checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1279
1280[[package]]
1281name = "windows_x86_64_gnu"
1066version = "0.52.6" 1282version = "0.52.6"
1067source = "registry+https://github.com/rust-lang/crates.io-index" 1283source = "registry+https://github.com/rust-lang/crates.io-index"
1068checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1284checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1069 1285
1070[[package]] 1286[[package]]
1071name = "windows_x86_64_gnullvm" 1287name = "windows_x86_64_gnullvm"
1288version = "0.48.5"
1289source = "registry+https://github.com/rust-lang/crates.io-index"
1290checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1291
1292[[package]]
1293name = "windows_x86_64_gnullvm"
1072version = "0.52.6" 1294version = "0.52.6"
1073source = "registry+https://github.com/rust-lang/crates.io-index" 1295source = "registry+https://github.com/rust-lang/crates.io-index"
1074checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1296checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1075 1297
1076[[package]] 1298[[package]]
1077name = "windows_x86_64_msvc" 1299name = "windows_x86_64_msvc"
1300version = "0.48.5"
1301source = "registry+https://github.com/rust-lang/crates.io-index"
1302checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1303
1304[[package]]
1305name = "windows_x86_64_msvc"
1078version = "0.52.6" 1306version = "0.52.6"
1079source = "registry+https://github.com/rust-lang/crates.io-index" 1307source = "registry+https://github.com/rust-lang/crates.io-index"
1080checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1308checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
@@ -1087,12 +1315,3 @@ checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
1087dependencies = [ 1315dependencies = [
1088 "memchr", 1316 "memchr",
1089] 1317]
1090
1091[[package]]
1092name = "yaml-rust"
1093version = "0.4.5"
1094source = "registry+https://github.com/rust-lang/crates.io-index"
1095checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
1096dependencies = [
1097 "linked-hash-map",
1098]