Cargo.lock 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "bitflags"
  6. version = "1.3.2"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  9. [[package]]
  10. name = "clap"
  11. version = "2.34.0"
  12. source = "registry+https://github.com/rust-lang/crates.io-index"
  13. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  14. dependencies = [
  15. "bitflags",
  16. "textwrap",
  17. "unicode-width",
  18. ]
  19. [[package]]
  20. name = "form_urlencoded"
  21. version = "1.0.1"
  22. source = "registry+https://github.com/rust-lang/crates.io-index"
  23. checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
  24. dependencies = [
  25. "matches",
  26. "percent-encoding",
  27. ]
  28. [[package]]
  29. name = "heck"
  30. version = "0.3.3"
  31. source = "registry+https://github.com/rust-lang/crates.io-index"
  32. checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
  33. dependencies = [
  34. "unicode-segmentation",
  35. ]
  36. [[package]]
  37. name = "idna"
  38. version = "0.2.3"
  39. source = "registry+https://github.com/rust-lang/crates.io-index"
  40. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  41. dependencies = [
  42. "matches",
  43. "unicode-bidi",
  44. "unicode-normalization",
  45. ]
  46. [[package]]
  47. name = "lazy_static"
  48. version = "1.4.0"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  51. [[package]]
  52. name = "matches"
  53. version = "0.1.9"
  54. source = "registry+https://github.com/rust-lang/crates.io-index"
  55. checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
  56. [[package]]
  57. name = "percent-encoding"
  58. version = "2.1.0"
  59. source = "registry+https://github.com/rust-lang/crates.io-index"
  60. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  61. [[package]]
  62. name = "proc-macro-error"
  63. version = "1.0.4"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  66. dependencies = [
  67. "proc-macro-error-attr",
  68. "proc-macro2",
  69. "quote",
  70. "syn",
  71. "version_check",
  72. ]
  73. [[package]]
  74. name = "proc-macro-error-attr"
  75. version = "1.0.4"
  76. source = "registry+https://github.com/rust-lang/crates.io-index"
  77. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  78. dependencies = [
  79. "proc-macro2",
  80. "quote",
  81. "version_check",
  82. ]
  83. [[package]]
  84. name = "proc-macro2"
  85. version = "1.0.36"
  86. source = "registry+https://github.com/rust-lang/crates.io-index"
  87. checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
  88. dependencies = [
  89. "unicode-xid",
  90. ]
  91. [[package]]
  92. name = "quote"
  93. version = "1.0.17"
  94. source = "registry+https://github.com/rust-lang/crates.io-index"
  95. checksum = "632d02bff7f874a36f33ea8bb416cd484b90cc66c1194b1a1110d067a7013f58"
  96. dependencies = [
  97. "proc-macro2",
  98. ]
  99. [[package]]
  100. name = "structopt"
  101. version = "0.3.26"
  102. source = "registry+https://github.com/rust-lang/crates.io-index"
  103. checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
  104. dependencies = [
  105. "clap",
  106. "lazy_static",
  107. "structopt-derive",
  108. ]
  109. [[package]]
  110. name = "structopt-derive"
  111. version = "0.4.18"
  112. source = "registry+https://github.com/rust-lang/crates.io-index"
  113. checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
  114. dependencies = [
  115. "heck",
  116. "proc-macro-error",
  117. "proc-macro2",
  118. "quote",
  119. "syn",
  120. ]
  121. [[package]]
  122. name = "syn"
  123. version = "1.0.90"
  124. source = "registry+https://github.com/rust-lang/crates.io-index"
  125. checksum = "704df27628939572cd88d33f171cd6f896f4eaca85252c6e0a72d8d8287ee86f"
  126. dependencies = [
  127. "proc-macro2",
  128. "quote",
  129. "unicode-xid",
  130. ]
  131. [[package]]
  132. name = "textwrap"
  133. version = "0.11.0"
  134. source = "registry+https://github.com/rust-lang/crates.io-index"
  135. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  136. dependencies = [
  137. "unicode-width",
  138. ]
  139. [[package]]
  140. name = "tinyvec"
  141. version = "1.5.1"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
  144. dependencies = [
  145. "tinyvec_macros",
  146. ]
  147. [[package]]
  148. name = "tinyvec_macros"
  149. version = "0.1.0"
  150. source = "registry+https://github.com/rust-lang/crates.io-index"
  151. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  152. [[package]]
  153. name = "torwatch"
  154. version = "0.1.0"
  155. dependencies = [
  156. "structopt",
  157. "url",
  158. ]
  159. [[package]]
  160. name = "unicode-bidi"
  161. version = "0.3.7"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
  164. [[package]]
  165. name = "unicode-normalization"
  166. version = "0.1.19"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
  169. dependencies = [
  170. "tinyvec",
  171. ]
  172. [[package]]
  173. name = "unicode-segmentation"
  174. version = "1.9.0"
  175. source = "registry+https://github.com/rust-lang/crates.io-index"
  176. checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
  177. [[package]]
  178. name = "unicode-width"
  179. version = "0.1.9"
  180. source = "registry+https://github.com/rust-lang/crates.io-index"
  181. checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
  182. [[package]]
  183. name = "unicode-xid"
  184. version = "0.2.2"
  185. source = "registry+https://github.com/rust-lang/crates.io-index"
  186. checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
  187. [[package]]
  188. name = "url"
  189. version = "2.2.2"
  190. source = "registry+https://github.com/rust-lang/crates.io-index"
  191. checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
  192. dependencies = [
  193. "form_urlencoded",
  194. "idna",
  195. "matches",
  196. "percent-encoding",
  197. ]
  198. [[package]]
  199. name = "version_check"
  200. version = "0.9.4"
  201. source = "registry+https://github.com/rust-lang/crates.io-index"
  202. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"