lol
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.15"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
10dependencies = [
11 "memchr",
12]
13
14[[package]]
15name = "autocfg"
16version = "1.0.1"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
19
20[[package]]
21name = "base64"
22version = "0.13.0"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
25
26[[package]]
27name = "bitflags"
28version = "1.2.1"
29source = "registry+https://github.com/rust-lang/crates.io-index"
30checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
31
32[[package]]
33name = "byteorder"
34version = "1.4.3"
35source = "registry+https://github.com/rust-lang/crates.io-index"
36checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
37
38[[package]]
39name = "bytes"
40version = "0.5.6"
41source = "registry+https://github.com/rust-lang/crates.io-index"
42checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
43
44[[package]]
45name = "bytes"
46version = "1.1.0"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
49
50[[package]]
51name = "cfg-if"
52version = "0.1.10"
53source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
55
56[[package]]
57name = "cfg-if"
58version = "1.0.0"
59source = "registry+https://github.com/rust-lang/crates.io-index"
60checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
61
62[[package]]
63name = "chrono"
64version = "0.4.19"
65source = "registry+https://github.com/rust-lang/crates.io-index"
66checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
67dependencies = [
68 "libc",
69 "num-integer",
70 "num-traits",
71 "time",
72 "winapi 0.3.9",
73]
74
75[[package]]
76name = "dns-message-parser"
77version = "0.6.0"
78source = "registry+https://github.com/rust-lang/crates.io-index"
79checksum = "b393503f9263e08ba3efe0a3578cdde90d6da5ae1af232cc338640670451c992"
80dependencies = [
81 "base64",
82 "bytes 1.1.0",
83 "hex",
84 "thiserror",
85]
86
87[[package]]
88name = "dnspeep"
89version = "0.1.3"
90dependencies = [
91 "bytes 1.1.0",
92 "chrono",
93 "dns-message-parser",
94 "etherparse",
95 "eyre",
96 "futures",
97 "getopts",
98 "hex",
99 "libc",
100 "pcap",
101 "tokio",
102]
103
104[[package]]
105name = "etherparse"
106version = "0.9.0"
107source = "registry+https://github.com/rust-lang/crates.io-index"
108checksum = "2fa20922281f9ee5ffcda45e80d56085829279f1270f79fbabc39809a4354807"
109dependencies = [
110 "byteorder",
111]
112
113[[package]]
114name = "eyre"
115version = "0.6.5"
116source = "registry+https://github.com/rust-lang/crates.io-index"
117checksum = "221239d1d5ea86bf5d6f91c9d6bc3646ffe471b08ff9b0f91c44f115ac969d2b"
118dependencies = [
119 "indenter",
120 "once_cell",
121]
122
123[[package]]
124name = "fnv"
125version = "1.0.7"
126source = "registry+https://github.com/rust-lang/crates.io-index"
127checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
128
129[[package]]
130name = "fuchsia-zircon"
131version = "0.3.3"
132source = "registry+https://github.com/rust-lang/crates.io-index"
133checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
134dependencies = [
135 "bitflags",
136 "fuchsia-zircon-sys",
137]
138
139[[package]]
140name = "fuchsia-zircon-sys"
141version = "0.3.3"
142source = "registry+https://github.com/rust-lang/crates.io-index"
143checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
144
145[[package]]
146name = "futures"
147version = "0.3.13"
148source = "registry+https://github.com/rust-lang/crates.io-index"
149checksum = "7f55667319111d593ba876406af7c409c0ebb44dc4be6132a783ccf163ea14c1"
150dependencies = [
151 "futures-channel",
152 "futures-core",
153 "futures-executor",
154 "futures-io",
155 "futures-sink",
156 "futures-task",
157 "futures-util",
158]
159
160[[package]]
161name = "futures-channel"
162version = "0.3.13"
163source = "registry+https://github.com/rust-lang/crates.io-index"
164checksum = "8c2dd2df839b57db9ab69c2c9d8f3e8c81984781937fe2807dc6dcf3b2ad2939"
165dependencies = [
166 "futures-core",
167 "futures-sink",
168]
169
170[[package]]
171name = "futures-core"
172version = "0.3.13"
173source = "registry+https://github.com/rust-lang/crates.io-index"
174checksum = "15496a72fabf0e62bdc3df11a59a3787429221dd0710ba8ef163d6f7a9112c94"
175
176[[package]]
177name = "futures-executor"
178version = "0.3.13"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "891a4b7b96d84d5940084b2a37632dd65deeae662c114ceaa2c879629c9c0ad1"
181dependencies = [
182 "futures-core",
183 "futures-task",
184 "futures-util",
185]
186
187[[package]]
188name = "futures-io"
189version = "0.3.13"
190source = "registry+https://github.com/rust-lang/crates.io-index"
191checksum = "d71c2c65c57704c32f5241c1223167c2c3294fd34ac020c807ddbe6db287ba59"
192
193[[package]]
194name = "futures-macro"
195version = "0.3.13"
196source = "registry+https://github.com/rust-lang/crates.io-index"
197checksum = "ea405816a5139fb39af82c2beb921d52143f556038378d6db21183a5c37fbfb7"
198dependencies = [
199 "proc-macro-hack",
200 "proc-macro2",
201 "quote",
202 "syn",
203]
204
205[[package]]
206name = "futures-sink"
207version = "0.3.13"
208source = "registry+https://github.com/rust-lang/crates.io-index"
209checksum = "85754d98985841b7d4f5e8e6fbfa4a4ac847916893ec511a2917ccd8525b8bb3"
210
211[[package]]
212name = "futures-task"
213version = "0.3.13"
214source = "registry+https://github.com/rust-lang/crates.io-index"
215checksum = "fa189ef211c15ee602667a6fcfe1c1fd9e07d42250d2156382820fba33c9df80"
216
217[[package]]
218name = "futures-util"
219version = "0.3.13"
220source = "registry+https://github.com/rust-lang/crates.io-index"
221checksum = "1812c7ab8aedf8d6f2701a43e1243acdbcc2b36ab26e2ad421eb99ac963d96d1"
222dependencies = [
223 "futures-channel",
224 "futures-core",
225 "futures-io",
226 "futures-macro",
227 "futures-sink",
228 "futures-task",
229 "memchr",
230 "pin-project-lite 0.2.6",
231 "pin-utils",
232 "proc-macro-hack",
233 "proc-macro-nested",
234 "slab",
235]
236
237[[package]]
238name = "getopts"
239version = "0.2.21"
240source = "registry+https://github.com/rust-lang/crates.io-index"
241checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
242dependencies = [
243 "unicode-width",
244]
245
246[[package]]
247name = "hermit-abi"
248version = "0.1.18"
249source = "registry+https://github.com/rust-lang/crates.io-index"
250checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
251dependencies = [
252 "libc",
253]
254
255[[package]]
256name = "hex"
257version = "0.4.3"
258source = "registry+https://github.com/rust-lang/crates.io-index"
259checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
260
261[[package]]
262name = "indenter"
263version = "0.3.3"
264source = "registry+https://github.com/rust-lang/crates.io-index"
265checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
266
267[[package]]
268name = "iovec"
269version = "0.1.4"
270source = "registry+https://github.com/rust-lang/crates.io-index"
271checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
272dependencies = [
273 "libc",
274]
275
276[[package]]
277name = "kernel32-sys"
278version = "0.2.2"
279source = "registry+https://github.com/rust-lang/crates.io-index"
280checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
281dependencies = [
282 "winapi 0.2.8",
283 "winapi-build",
284]
285
286[[package]]
287name = "lazy_static"
288version = "1.4.0"
289source = "registry+https://github.com/rust-lang/crates.io-index"
290checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
291
292[[package]]
293name = "libc"
294version = "0.2.91"
295source = "registry+https://github.com/rust-lang/crates.io-index"
296checksum = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7"
297
298[[package]]
299name = "libloading"
300version = "0.6.7"
301source = "registry+https://github.com/rust-lang/crates.io-index"
302checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883"
303dependencies = [
304 "cfg-if 1.0.0",
305 "winapi 0.3.9",
306]
307
308[[package]]
309name = "log"
310version = "0.4.14"
311source = "registry+https://github.com/rust-lang/crates.io-index"
312checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
313dependencies = [
314 "cfg-if 1.0.0",
315]
316
317[[package]]
318name = "memchr"
319version = "2.3.4"
320source = "registry+https://github.com/rust-lang/crates.io-index"
321checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
322
323[[package]]
324name = "mio"
325version = "0.6.23"
326source = "registry+https://github.com/rust-lang/crates.io-index"
327checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
328dependencies = [
329 "cfg-if 0.1.10",
330 "fuchsia-zircon",
331 "fuchsia-zircon-sys",
332 "iovec",
333 "kernel32-sys",
334 "libc",
335 "log",
336 "miow 0.2.2",
337 "net2",
338 "slab",
339 "winapi 0.2.8",
340]
341
342[[package]]
343name = "mio-named-pipes"
344version = "0.1.7"
345source = "registry+https://github.com/rust-lang/crates.io-index"
346checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
347dependencies = [
348 "log",
349 "mio",
350 "miow 0.3.7",
351 "winapi 0.3.9",
352]
353
354[[package]]
355name = "mio-uds"
356version = "0.6.8"
357source = "registry+https://github.com/rust-lang/crates.io-index"
358checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
359dependencies = [
360 "iovec",
361 "libc",
362 "mio",
363]
364
365[[package]]
366name = "miow"
367version = "0.2.2"
368source = "registry+https://github.com/rust-lang/crates.io-index"
369checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
370dependencies = [
371 "kernel32-sys",
372 "net2",
373 "winapi 0.2.8",
374 "ws2_32-sys",
375]
376
377[[package]]
378name = "miow"
379version = "0.3.7"
380source = "registry+https://github.com/rust-lang/crates.io-index"
381checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
382dependencies = [
383 "winapi 0.3.9",
384]
385
386[[package]]
387name = "net2"
388version = "0.2.37"
389source = "registry+https://github.com/rust-lang/crates.io-index"
390checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
391dependencies = [
392 "cfg-if 0.1.10",
393 "libc",
394 "winapi 0.3.9",
395]
396
397[[package]]
398name = "num-integer"
399version = "0.1.44"
400source = "registry+https://github.com/rust-lang/crates.io-index"
401checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
402dependencies = [
403 "autocfg",
404 "num-traits",
405]
406
407[[package]]
408name = "num-traits"
409version = "0.2.14"
410source = "registry+https://github.com/rust-lang/crates.io-index"
411checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
412dependencies = [
413 "autocfg",
414]
415
416[[package]]
417name = "num_cpus"
418version = "1.13.0"
419source = "registry+https://github.com/rust-lang/crates.io-index"
420checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
421dependencies = [
422 "hermit-abi",
423 "libc",
424]
425
426[[package]]
427name = "once_cell"
428version = "1.7.2"
429source = "registry+https://github.com/rust-lang/crates.io-index"
430checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
431
432[[package]]
433name = "pcap"
434version = "0.8.1"
435source = "git+https://github.com/jvns/pcap#ae2aa7f501ae5bb7069155cf7c5c700b7482681d"
436dependencies = [
437 "futures",
438 "libc",
439 "libloading",
440 "mio",
441 "regex",
442 "tokio",
443 "widestring",
444]
445
446[[package]]
447name = "pin-project-lite"
448version = "0.1.12"
449source = "registry+https://github.com/rust-lang/crates.io-index"
450checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
451
452[[package]]
453name = "pin-project-lite"
454version = "0.2.6"
455source = "registry+https://github.com/rust-lang/crates.io-index"
456checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
457
458[[package]]
459name = "pin-utils"
460version = "0.1.0"
461source = "registry+https://github.com/rust-lang/crates.io-index"
462checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
463
464[[package]]
465name = "proc-macro-hack"
466version = "0.5.19"
467source = "registry+https://github.com/rust-lang/crates.io-index"
468checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
469
470[[package]]
471name = "proc-macro-nested"
472version = "0.1.7"
473source = "registry+https://github.com/rust-lang/crates.io-index"
474checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
475
476[[package]]
477name = "proc-macro2"
478version = "1.0.24"
479source = "registry+https://github.com/rust-lang/crates.io-index"
480checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
481dependencies = [
482 "unicode-xid",
483]
484
485[[package]]
486name = "quote"
487version = "1.0.9"
488source = "registry+https://github.com/rust-lang/crates.io-index"
489checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
490dependencies = [
491 "proc-macro2",
492]
493
494[[package]]
495name = "regex"
496version = "1.4.5"
497source = "registry+https://github.com/rust-lang/crates.io-index"
498checksum = "957056ecddbeba1b26965114e191d2e8589ce74db242b6ea25fc4062427a5c19"
499dependencies = [
500 "aho-corasick",
501 "memchr",
502 "regex-syntax",
503]
504
505[[package]]
506name = "regex-syntax"
507version = "0.6.23"
508source = "registry+https://github.com/rust-lang/crates.io-index"
509checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548"
510
511[[package]]
512name = "signal-hook-registry"
513version = "1.3.0"
514source = "registry+https://github.com/rust-lang/crates.io-index"
515checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
516dependencies = [
517 "libc",
518]
519
520[[package]]
521name = "slab"
522version = "0.4.2"
523source = "registry+https://github.com/rust-lang/crates.io-index"
524checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
525
526[[package]]
527name = "syn"
528version = "1.0.65"
529source = "registry+https://github.com/rust-lang/crates.io-index"
530checksum = "f3a1d708c221c5a612956ef9f75b37e454e88d1f7b899fbd3a18d4252012d663"
531dependencies = [
532 "proc-macro2",
533 "quote",
534 "unicode-xid",
535]
536
537[[package]]
538name = "thiserror"
539version = "1.0.30"
540source = "registry+https://github.com/rust-lang/crates.io-index"
541checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
542dependencies = [
543 "thiserror-impl",
544]
545
546[[package]]
547name = "thiserror-impl"
548version = "1.0.30"
549source = "registry+https://github.com/rust-lang/crates.io-index"
550checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
551dependencies = [
552 "proc-macro2",
553 "quote",
554 "syn",
555]
556
557[[package]]
558name = "time"
559version = "0.1.44"
560source = "registry+https://github.com/rust-lang/crates.io-index"
561checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
562dependencies = [
563 "libc",
564 "wasi",
565 "winapi 0.3.9",
566]
567
568[[package]]
569name = "tokio"
570version = "0.2.25"
571source = "registry+https://github.com/rust-lang/crates.io-index"
572checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
573dependencies = [
574 "bytes 0.5.6",
575 "fnv",
576 "futures-core",
577 "iovec",
578 "lazy_static",
579 "libc",
580 "memchr",
581 "mio",
582 "mio-named-pipes",
583 "mio-uds",
584 "num_cpus",
585 "pin-project-lite 0.1.12",
586 "signal-hook-registry",
587 "slab",
588 "tokio-macros",
589 "winapi 0.3.9",
590]
591
592[[package]]
593name = "tokio-macros"
594version = "0.2.6"
595source = "registry+https://github.com/rust-lang/crates.io-index"
596checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"
597dependencies = [
598 "proc-macro2",
599 "quote",
600 "syn",
601]
602
603[[package]]
604name = "unicode-width"
605version = "0.1.8"
606source = "registry+https://github.com/rust-lang/crates.io-index"
607checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
608
609[[package]]
610name = "unicode-xid"
611version = "0.2.1"
612source = "registry+https://github.com/rust-lang/crates.io-index"
613checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
614
615[[package]]
616name = "wasi"
617version = "0.10.0+wasi-snapshot-preview1"
618source = "registry+https://github.com/rust-lang/crates.io-index"
619checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
620
621[[package]]
622name = "widestring"
623version = "0.2.2"
624source = "registry+https://github.com/rust-lang/crates.io-index"
625checksum = "7157704c2e12e3d2189c507b7482c52820a16dfa4465ba91add92f266667cadb"
626
627[[package]]
628name = "winapi"
629version = "0.2.8"
630source = "registry+https://github.com/rust-lang/crates.io-index"
631checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
632
633[[package]]
634name = "winapi"
635version = "0.3.9"
636source = "registry+https://github.com/rust-lang/crates.io-index"
637checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
638dependencies = [
639 "winapi-i686-pc-windows-gnu",
640 "winapi-x86_64-pc-windows-gnu",
641]
642
643[[package]]
644name = "winapi-build"
645version = "0.1.1"
646source = "registry+https://github.com/rust-lang/crates.io-index"
647checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
648
649[[package]]
650name = "winapi-i686-pc-windows-gnu"
651version = "0.4.0"
652source = "registry+https://github.com/rust-lang/crates.io-index"
653checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
654
655[[package]]
656name = "winapi-x86_64-pc-windows-gnu"
657version = "0.4.0"
658source = "registry+https://github.com/rust-lang/crates.io-index"
659checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
660
661[[package]]
662name = "ws2_32-sys"
663version = "0.2.1"
664source = "registry+https://github.com/rust-lang/crates.io-index"
665checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
666dependencies = [
667 "winapi 0.2.8",
668 "winapi-build",
669]