Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 3
4
5[[package]]
6name = "aho-corasick"
7version = "0.7.20"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
10dependencies = [
11 "memchr",
12]
13
14[[package]]
15name = "anyhow"
16version = "1.0.66"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
19
20[[package]]
21name = "assert_cmd"
22version = "2.0.7"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "fa3d466004a8b4cb1bc34044240a2fd29d17607e2e3bd613eb44fd48e8100da3"
25dependencies = [
26 "bstr",
27 "doc-comment",
28 "predicates",
29 "predicates-core",
30 "predicates-tree",
31 "wait-timeout",
32]
33
34[[package]]
35name = "bitflags"
36version = "1.3.2"
37source = "registry+https://github.com/rust-lang/crates.io-index"
38checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
39
40[[package]]
41name = "bstr"
42version = "1.0.1"
43source = "registry+https://github.com/rust-lang/crates.io-index"
44checksum = "fca0852af221f458706eb0725c03e4ed6c46af9ac98e6a689d5e634215d594dd"
45dependencies = [
46 "memchr",
47 "once_cell",
48 "regex-automata",
49 "serde",
50]
51
52[[package]]
53name = "cc"
54version = "1.0.77"
55source = "registry+https://github.com/rust-lang/crates.io-index"
56checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4"
57
58[[package]]
59name = "cfg-if"
60version = "1.0.0"
61source = "registry+https://github.com/rust-lang/crates.io-index"
62checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
63
64[[package]]
65name = "clap"
66version = "4.0.29"
67source = "registry+https://github.com/rust-lang/crates.io-index"
68checksum = "4d63b9e9c07271b9957ad22c173bae2a4d9a81127680962039296abcd2f8251d"
69dependencies = [
70 "bitflags",
71 "clap_derive",
72 "clap_lex",
73 "is-terminal",
74 "once_cell",
75 "strsim",
76 "termcolor",
77 "terminal_size",
78 "unicase",
79 "unicode-width",
80]
81
82[[package]]
83name = "clap_derive"
84version = "4.0.21"
85source = "registry+https://github.com/rust-lang/crates.io-index"
86checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
87dependencies = [
88 "heck",
89 "proc-macro-error",
90 "proc-macro2",
91 "quote",
92 "syn",
93]
94
95[[package]]
96name = "clap_lex"
97version = "0.3.0"
98source = "registry+https://github.com/rust-lang/crates.io-index"
99checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
100dependencies = [
101 "os_str_bytes",
102]
103
104[[package]]
105name = "difflib"
106version = "0.4.0"
107source = "registry+https://github.com/rust-lang/crates.io-index"
108checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
109
110[[package]]
111name = "dissimilar"
112version = "1.0.4"
113source = "registry+https://github.com/rust-lang/crates.io-index"
114checksum = "8c97b9233581d84b8e1e689cdd3a47b6f69770084fc246e86a7f78b0d9c1d4a5"
115
116[[package]]
117name = "doc-comment"
118version = "0.3.3"
119source = "registry+https://github.com/rust-lang/crates.io-index"
120checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
121
122[[package]]
123name = "either"
124version = "1.8.0"
125source = "registry+https://github.com/rust-lang/crates.io-index"
126checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
127
128[[package]]
129name = "errno"
130version = "0.2.8"
131source = "registry+https://github.com/rust-lang/crates.io-index"
132checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
133dependencies = [
134 "errno-dragonfly",
135 "libc",
136 "winapi",
137]
138
139[[package]]
140name = "errno-dragonfly"
141version = "0.1.2"
142source = "registry+https://github.com/rust-lang/crates.io-index"
143checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
144dependencies = [
145 "cc",
146 "libc",
147]
148
149[[package]]
150name = "expect-test"
151version = "1.4.0"
152source = "registry+https://github.com/rust-lang/crates.io-index"
153checksum = "1d4661aca38d826eb7c72fe128e4238220616de4c0cc00db7bfc38e2e1364dd3"
154dependencies = [
155 "dissimilar",
156 "once_cell",
157]
158
159[[package]]
160name = "fastrand"
161version = "1.8.0"
162source = "registry+https://github.com/rust-lang/crates.io-index"
163checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
164dependencies = [
165 "instant",
166]
167
168[[package]]
169name = "heck"
170version = "0.4.0"
171source = "registry+https://github.com/rust-lang/crates.io-index"
172checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
173
174[[package]]
175name = "hermit-abi"
176version = "0.2.6"
177source = "registry+https://github.com/rust-lang/crates.io-index"
178checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
179dependencies = [
180 "libc",
181]
182
183[[package]]
184name = "instant"
185version = "0.1.12"
186source = "registry+https://github.com/rust-lang/crates.io-index"
187checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
188dependencies = [
189 "cfg-if",
190]
191
192[[package]]
193name = "io-lifetimes"
194version = "1.0.3"
195source = "registry+https://github.com/rust-lang/crates.io-index"
196checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
197dependencies = [
198 "libc",
199 "windows-sys",
200]
201
202[[package]]
203name = "is-terminal"
204version = "0.4.1"
205source = "registry+https://github.com/rust-lang/crates.io-index"
206checksum = "927609f78c2913a6f6ac3c27a4fe87f43e2a35367c0c4b0f8265e8f49a104330"
207dependencies = [
208 "hermit-abi",
209 "io-lifetimes",
210 "rustix",
211 "windows-sys",
212]
213
214[[package]]
215name = "is_executable"
216version = "1.0.1"
217source = "registry+https://github.com/rust-lang/crates.io-index"
218checksum = "fa9acdc6d67b75e626ad644734e8bc6df893d9cd2a834129065d3dd6158ea9c8"
219dependencies = [
220 "winapi",
221]
222
223[[package]]
224name = "itertools"
225version = "0.10.5"
226source = "registry+https://github.com/rust-lang/crates.io-index"
227checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
228dependencies = [
229 "either",
230]
231
232[[package]]
233name = "libc"
234version = "0.2.138"
235source = "registry+https://github.com/rust-lang/crates.io-index"
236checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
237
238[[package]]
239name = "linux-raw-sys"
240version = "0.1.3"
241source = "registry+https://github.com/rust-lang/crates.io-index"
242checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f"
243
244[[package]]
245name = "memchr"
246version = "2.5.0"
247source = "registry+https://github.com/rust-lang/crates.io-index"
248checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
249
250[[package]]
251name = "once_cell"
252version = "1.16.0"
253source = "registry+https://github.com/rust-lang/crates.io-index"
254checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
255
256[[package]]
257name = "os_str_bytes"
258version = "6.4.1"
259source = "registry+https://github.com/rust-lang/crates.io-index"
260checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
261
262[[package]]
263name = "patsh"
264version = "0.2.0"
265dependencies = [
266 "anyhow",
267 "assert_cmd",
268 "clap",
269 "expect-test",
270 "is_executable",
271 "shell-escape",
272 "tempfile",
273 "tree-sitter",
274 "tree-sitter-bash",
275]
276
277[[package]]
278name = "predicates"
279version = "2.1.4"
280source = "registry+https://github.com/rust-lang/crates.io-index"
281checksum = "f54fc5dc63ed3bbf19494623db4f3af16842c0d975818e469022d09e53f0aa05"
282dependencies = [
283 "difflib",
284 "itertools",
285 "predicates-core",
286]
287
288[[package]]
289name = "predicates-core"
290version = "1.0.5"
291source = "registry+https://github.com/rust-lang/crates.io-index"
292checksum = "72f883590242d3c6fc5bf50299011695fa6590c2c70eac95ee1bdb9a733ad1a2"
293
294[[package]]
295name = "predicates-tree"
296version = "1.0.7"
297source = "registry+https://github.com/rust-lang/crates.io-index"
298checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d"
299dependencies = [
300 "predicates-core",
301 "termtree",
302]
303
304[[package]]
305name = "proc-macro-error"
306version = "1.0.4"
307source = "registry+https://github.com/rust-lang/crates.io-index"
308checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
309dependencies = [
310 "proc-macro-error-attr",
311 "proc-macro2",
312 "quote",
313 "syn",
314 "version_check",
315]
316
317[[package]]
318name = "proc-macro-error-attr"
319version = "1.0.4"
320source = "registry+https://github.com/rust-lang/crates.io-index"
321checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
322dependencies = [
323 "proc-macro2",
324 "quote",
325 "version_check",
326]
327
328[[package]]
329name = "proc-macro2"
330version = "1.0.47"
331source = "registry+https://github.com/rust-lang/crates.io-index"
332checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
333dependencies = [
334 "unicode-ident",
335]
336
337[[package]]
338name = "quote"
339version = "1.0.21"
340source = "registry+https://github.com/rust-lang/crates.io-index"
341checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
342dependencies = [
343 "proc-macro2",
344]
345
346[[package]]
347name = "redox_syscall"
348version = "0.2.16"
349source = "registry+https://github.com/rust-lang/crates.io-index"
350checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
351dependencies = [
352 "bitflags",
353]
354
355[[package]]
356name = "regex"
357version = "1.7.0"
358source = "registry+https://github.com/rust-lang/crates.io-index"
359checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
360dependencies = [
361 "aho-corasick",
362 "memchr",
363 "regex-syntax",
364]
365
366[[package]]
367name = "regex-automata"
368version = "0.1.10"
369source = "registry+https://github.com/rust-lang/crates.io-index"
370checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
371
372[[package]]
373name = "regex-syntax"
374version = "0.6.28"
375source = "registry+https://github.com/rust-lang/crates.io-index"
376checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
377
378[[package]]
379name = "remove_dir_all"
380version = "0.5.3"
381source = "registry+https://github.com/rust-lang/crates.io-index"
382checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
383dependencies = [
384 "winapi",
385]
386
387[[package]]
388name = "rustix"
389version = "0.36.4"
390source = "registry+https://github.com/rust-lang/crates.io-index"
391checksum = "cb93e85278e08bb5788653183213d3a60fc242b10cb9be96586f5a73dcb67c23"
392dependencies = [
393 "bitflags",
394 "errno",
395 "io-lifetimes",
396 "libc",
397 "linux-raw-sys",
398 "windows-sys",
399]
400
401[[package]]
402name = "serde"
403version = "1.0.148"
404source = "registry+https://github.com/rust-lang/crates.io-index"
405checksum = "e53f64bb4ba0191d6d0676e1b141ca55047d83b74f5607e6d8eb88126c52c2dc"
406
407[[package]]
408name = "shell-escape"
409version = "0.1.5"
410source = "registry+https://github.com/rust-lang/crates.io-index"
411checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f"
412
413[[package]]
414name = "strsim"
415version = "0.10.0"
416source = "registry+https://github.com/rust-lang/crates.io-index"
417checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
418
419[[package]]
420name = "syn"
421version = "1.0.105"
422source = "registry+https://github.com/rust-lang/crates.io-index"
423checksum = "60b9b43d45702de4c839cb9b51d9f529c5dd26a4aff255b42b1ebc03e88ee908"
424dependencies = [
425 "proc-macro2",
426 "quote",
427 "unicode-ident",
428]
429
430[[package]]
431name = "tempfile"
432version = "3.3.0"
433source = "registry+https://github.com/rust-lang/crates.io-index"
434checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
435dependencies = [
436 "cfg-if",
437 "fastrand",
438 "libc",
439 "redox_syscall",
440 "remove_dir_all",
441 "winapi",
442]
443
444[[package]]
445name = "termcolor"
446version = "1.1.3"
447source = "registry+https://github.com/rust-lang/crates.io-index"
448checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
449dependencies = [
450 "winapi-util",
451]
452
453[[package]]
454name = "terminal_size"
455version = "0.2.3"
456source = "registry+https://github.com/rust-lang/crates.io-index"
457checksum = "cb20089a8ba2b69debd491f8d2d023761cbf196e999218c591fa1e7e15a21907"
458dependencies = [
459 "rustix",
460 "windows-sys",
461]
462
463[[package]]
464name = "termtree"
465version = "0.4.0"
466source = "registry+https://github.com/rust-lang/crates.io-index"
467checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8"
468
469[[package]]
470name = "tree-sitter"
471version = "0.20.9"
472source = "registry+https://github.com/rust-lang/crates.io-index"
473checksum = "d4423c784fe11398ca91e505cdc71356b07b1a924fc8735cfab5333afe3e18bc"
474dependencies = [
475 "cc",
476 "regex",
477]
478
479[[package]]
480name = "tree-sitter-bash"
481version = "0.19.0"
482source = "git+https://github.com/tree-sitter/tree-sitter-bash#4488aa41406547e478636a4fcfd24f5bbc3f2f74"
483dependencies = [
484 "cc",
485 "tree-sitter",
486]
487
488[[package]]
489name = "unicase"
490version = "2.6.0"
491source = "registry+https://github.com/rust-lang/crates.io-index"
492checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
493dependencies = [
494 "version_check",
495]
496
497[[package]]
498name = "unicode-ident"
499version = "1.0.5"
500source = "registry+https://github.com/rust-lang/crates.io-index"
501checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
502
503[[package]]
504name = "unicode-width"
505version = "0.1.10"
506source = "registry+https://github.com/rust-lang/crates.io-index"
507checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
508
509[[package]]
510name = "version_check"
511version = "0.9.4"
512source = "registry+https://github.com/rust-lang/crates.io-index"
513checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
514
515[[package]]
516name = "wait-timeout"
517version = "0.2.0"
518source = "registry+https://github.com/rust-lang/crates.io-index"
519checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
520dependencies = [
521 "libc",
522]
523
524[[package]]
525name = "winapi"
526version = "0.3.9"
527source = "registry+https://github.com/rust-lang/crates.io-index"
528checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
529dependencies = [
530 "winapi-i686-pc-windows-gnu",
531 "winapi-x86_64-pc-windows-gnu",
532]
533
534[[package]]
535name = "winapi-i686-pc-windows-gnu"
536version = "0.4.0"
537source = "registry+https://github.com/rust-lang/crates.io-index"
538checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
539
540[[package]]
541name = "winapi-util"
542version = "0.1.5"
543source = "registry+https://github.com/rust-lang/crates.io-index"
544checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
545dependencies = [
546 "winapi",
547]
548
549[[package]]
550name = "winapi-x86_64-pc-windows-gnu"
551version = "0.4.0"
552source = "registry+https://github.com/rust-lang/crates.io-index"
553checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
554
555[[package]]
556name = "windows-sys"
557version = "0.42.0"
558source = "registry+https://github.com/rust-lang/crates.io-index"
559checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
560dependencies = [
561 "windows_aarch64_gnullvm",
562 "windows_aarch64_msvc",
563 "windows_i686_gnu",
564 "windows_i686_msvc",
565 "windows_x86_64_gnu",
566 "windows_x86_64_gnullvm",
567 "windows_x86_64_msvc",
568]
569
570[[package]]
571name = "windows_aarch64_gnullvm"
572version = "0.42.0"
573source = "registry+https://github.com/rust-lang/crates.io-index"
574checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
575
576[[package]]
577name = "windows_aarch64_msvc"
578version = "0.42.0"
579source = "registry+https://github.com/rust-lang/crates.io-index"
580checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
581
582[[package]]
583name = "windows_i686_gnu"
584version = "0.42.0"
585source = "registry+https://github.com/rust-lang/crates.io-index"
586checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
587
588[[package]]
589name = "windows_i686_msvc"
590version = "0.42.0"
591source = "registry+https://github.com/rust-lang/crates.io-index"
592checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
593
594[[package]]
595name = "windows_x86_64_gnu"
596version = "0.42.0"
597source = "registry+https://github.com/rust-lang/crates.io-index"
598checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
599
600[[package]]
601name = "windows_x86_64_gnullvm"
602version = "0.42.0"
603source = "registry+https://github.com/rust-lang/crates.io-index"
604checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
605
606[[package]]
607name = "windows_x86_64_msvc"
608version = "0.42.0"
609source = "registry+https://github.com/rust-lang/crates.io-index"
610checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"