Cargo.lock 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "addr2line"
  5. version = "0.14.1"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7"
  8. dependencies = [
  9. "gimli",
  10. ]
  11. [[package]]
  12. name = "adler"
  13. version = "1.0.2"
  14. source = "registry+https://github.com/rust-lang/crates.io-index"
  15. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  16. [[package]]
  17. name = "aho-corasick"
  18. version = "0.7.15"
  19. source = "registry+https://github.com/rust-lang/crates.io-index"
  20. checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
  21. dependencies = [
  22. "memchr",
  23. ]
  24. [[package]]
  25. name = "ansi_term"
  26. version = "0.11.0"
  27. source = "registry+https://github.com/rust-lang/crates.io-index"
  28. checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
  29. dependencies = [
  30. "winapi 0.3.9",
  31. ]
  32. [[package]]
  33. name = "anyhow"
  34. version = "1.0.38"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
  37. [[package]]
  38. name = "arc-swap"
  39. version = "0.4.8"
  40. source = "registry+https://github.com/rust-lang/crates.io-index"
  41. checksum = "dabe5a181f83789739c194cbe5a897dde195078fac08568d09221fd6137a7ba8"
  42. [[package]]
  43. name = "async-trait"
  44. version = "0.1.42"
  45. source = "registry+https://github.com/rust-lang/crates.io-index"
  46. checksum = "8d3a45e77e34375a7923b1e8febb049bb011f064714a8e17a1a616fef01da13d"
  47. dependencies = [
  48. "proc-macro2",
  49. "quote",
  50. "syn",
  51. ]
  52. [[package]]
  53. name = "atty"
  54. version = "0.2.14"
  55. source = "registry+https://github.com/rust-lang/crates.io-index"
  56. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  57. dependencies = [
  58. "hermit-abi",
  59. "libc",
  60. "winapi 0.3.9",
  61. ]
  62. [[package]]
  63. name = "autocfg"
  64. version = "1.0.1"
  65. source = "registry+https://github.com/rust-lang/crates.io-index"
  66. checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
  67. [[package]]
  68. name = "backtrace"
  69. version = "0.3.56"
  70. source = "registry+https://github.com/rust-lang/crates.io-index"
  71. checksum = "9d117600f438b1707d4e4ae15d3595657288f8235a0eb593e80ecc98ab34e1bc"
  72. dependencies = [
  73. "addr2line",
  74. "cfg-if 1.0.0",
  75. "libc",
  76. "miniz_oxide",
  77. "object",
  78. "rustc-demangle",
  79. ]
  80. [[package]]
  81. name = "base64"
  82. version = "0.12.3"
  83. source = "registry+https://github.com/rust-lang/crates.io-index"
  84. checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
  85. [[package]]
  86. name = "base64"
  87. version = "0.13.0"
  88. source = "registry+https://github.com/rust-lang/crates.io-index"
  89. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  90. [[package]]
  91. name = "bitflags"
  92. version = "1.2.1"
  93. source = "registry+https://github.com/rust-lang/crates.io-index"
  94. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  95. [[package]]
  96. name = "block-buffer"
  97. version = "0.7.3"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
  100. dependencies = [
  101. "block-padding",
  102. "byte-tools",
  103. "byteorder",
  104. "generic-array 0.12.3",
  105. ]
  106. [[package]]
  107. name = "block-buffer"
  108. version = "0.9.0"
  109. source = "registry+https://github.com/rust-lang/crates.io-index"
  110. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  111. dependencies = [
  112. "generic-array 0.14.3",
  113. ]
  114. [[package]]
  115. name = "block-padding"
  116. version = "0.1.5"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
  119. dependencies = [
  120. "byte-tools",
  121. ]
  122. [[package]]
  123. name = "bstr"
  124. version = "0.2.15"
  125. source = "registry+https://github.com/rust-lang/crates.io-index"
  126. checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
  127. dependencies = [
  128. "memchr",
  129. ]
  130. [[package]]
  131. name = "bumpalo"
  132. version = "3.6.1"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "63396b8a4b9de3f4fdfb320ab6080762242f66a8ef174c49d8e19b674db4cdbe"
  135. [[package]]
  136. name = "byte-tools"
  137. version = "0.3.1"
  138. source = "registry+https://github.com/rust-lang/crates.io-index"
  139. checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
  140. [[package]]
  141. name = "byteorder"
  142. version = "1.4.2"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b"
  145. [[package]]
  146. name = "bytes"
  147. version = "0.5.6"
  148. source = "registry+https://github.com/rust-lang/crates.io-index"
  149. checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
  150. [[package]]
  151. name = "bytes"
  152. version = "1.0.0"
  153. source = "registry+https://github.com/rust-lang/crates.io-index"
  154. checksum = "ad1f8e949d755f9d79112b5bb46938e0ef9d3804a0b16dfab13aafcaa5f0fa72"
  155. [[package]]
  156. name = "cc"
  157. version = "1.0.67"
  158. source = "registry+https://github.com/rust-lang/crates.io-index"
  159. checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
  160. [[package]]
  161. name = "cfg-if"
  162. version = "0.1.10"
  163. source = "registry+https://github.com/rust-lang/crates.io-index"
  164. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  165. [[package]]
  166. name = "cfg-if"
  167. version = "1.0.0"
  168. source = "registry+https://github.com/rust-lang/crates.io-index"
  169. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  170. [[package]]
  171. name = "chrono"
  172. version = "0.4.19"
  173. source = "registry+https://github.com/rust-lang/crates.io-index"
  174. checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
  175. dependencies = [
  176. "libc",
  177. "num-integer",
  178. "num-traits",
  179. "serde",
  180. "time",
  181. "winapi 0.3.9",
  182. ]
  183. [[package]]
  184. name = "clap"
  185. version = "2.33.3"
  186. source = "registry+https://github.com/rust-lang/crates.io-index"
  187. checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
  188. dependencies = [
  189. "ansi_term",
  190. "atty",
  191. "bitflags",
  192. "strsim",
  193. "textwrap",
  194. "unicode-width",
  195. "vec_map",
  196. ]
  197. [[package]]
  198. name = "comrak"
  199. version = "0.8.2"
  200. source = "registry+https://github.com/rust-lang/crates.io-index"
  201. checksum = "0d325e4f2ffff52ca77d995bb675494d5364aa332499d5f7c7fbb28c25e671f6"
  202. dependencies = [
  203. "clap",
  204. "entities",
  205. "lazy_static",
  206. "pest",
  207. "pest_derive",
  208. "regex",
  209. "shell-words",
  210. "twoway",
  211. "typed-arena",
  212. "unicode_categories",
  213. "xdg",
  214. ]
  215. [[package]]
  216. name = "core-foundation"
  217. version = "0.9.1"
  218. source = "registry+https://github.com/rust-lang/crates.io-index"
  219. checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
  220. dependencies = [
  221. "core-foundation-sys",
  222. "libc",
  223. ]
  224. [[package]]
  225. name = "core-foundation-sys"
  226. version = "0.8.2"
  227. source = "registry+https://github.com/rust-lang/crates.io-index"
  228. checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
  229. [[package]]
  230. name = "cpuid-bool"
  231. version = "0.1.2"
  232. source = "registry+https://github.com/rust-lang/crates.io-index"
  233. checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
  234. [[package]]
  235. name = "crossbeam-utils"
  236. version = "0.8.3"
  237. source = "registry+https://github.com/rust-lang/crates.io-index"
  238. checksum = "e7e9d99fa91428effe99c5c6d4634cdeba32b8cf784fc428a2a687f61a952c49"
  239. dependencies = [
  240. "autocfg",
  241. "cfg-if 1.0.0",
  242. "lazy_static",
  243. ]
  244. [[package]]
  245. name = "crypto-mac"
  246. version = "0.9.1"
  247. source = "registry+https://github.com/rust-lang/crates.io-index"
  248. checksum = "58bcd97a54c7ca5ce2f6eb16f6bede5b0ab5f0055fedc17d2f0b4466e21671ca"
  249. dependencies = [
  250. "generic-array 0.14.3",
  251. "subtle",
  252. ]
  253. [[package]]
  254. name = "digest"
  255. version = "0.8.1"
  256. source = "registry+https://github.com/rust-lang/crates.io-index"
  257. checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
  258. dependencies = [
  259. "generic-array 0.12.3",
  260. ]
  261. [[package]]
  262. name = "digest"
  263. version = "0.9.0"
  264. source = "registry+https://github.com/rust-lang/crates.io-index"
  265. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  266. dependencies = [
  267. "generic-array 0.14.3",
  268. ]
  269. [[package]]
  270. name = "doc-comment"
  271. version = "0.3.3"
  272. source = "registry+https://github.com/rust-lang/crates.io-index"
  273. checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
  274. [[package]]
  275. name = "dotenv"
  276. version = "0.15.0"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
  279. [[package]]
  280. name = "encoding_rs"
  281. version = "0.8.28"
  282. source = "registry+https://github.com/rust-lang/crates.io-index"
  283. checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
  284. dependencies = [
  285. "cfg-if 1.0.0",
  286. ]
  287. [[package]]
  288. name = "entities"
  289. version = "1.0.1"
  290. source = "registry+https://github.com/rust-lang/crates.io-index"
  291. checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
  292. [[package]]
  293. name = "env_logger"
  294. version = "0.7.1"
  295. source = "registry+https://github.com/rust-lang/crates.io-index"
  296. checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
  297. dependencies = [
  298. "atty",
  299. "humantime",
  300. "log",
  301. "regex",
  302. "termcolor",
  303. ]
  304. [[package]]
  305. name = "fake-simd"
  306. version = "0.1.2"
  307. source = "registry+https://github.com/rust-lang/crates.io-index"
  308. checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
  309. [[package]]
  310. name = "fallible-iterator"
  311. version = "0.2.0"
  312. source = "registry+https://github.com/rust-lang/crates.io-index"
  313. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  314. [[package]]
  315. name = "fnv"
  316. version = "1.0.7"
  317. source = "registry+https://github.com/rust-lang/crates.io-index"
  318. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  319. [[package]]
  320. name = "foreign-types"
  321. version = "0.3.2"
  322. source = "registry+https://github.com/rust-lang/crates.io-index"
  323. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  324. dependencies = [
  325. "foreign-types-shared",
  326. ]
  327. [[package]]
  328. name = "foreign-types-shared"
  329. version = "0.1.1"
  330. source = "registry+https://github.com/rust-lang/crates.io-index"
  331. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  332. [[package]]
  333. name = "form_urlencoded"
  334. version = "1.0.1"
  335. source = "registry+https://github.com/rust-lang/crates.io-index"
  336. checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
  337. dependencies = [
  338. "matches",
  339. "percent-encoding",
  340. ]
  341. [[package]]
  342. name = "fuchsia-zircon"
  343. version = "0.3.3"
  344. source = "registry+https://github.com/rust-lang/crates.io-index"
  345. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  346. dependencies = [
  347. "bitflags",
  348. "fuchsia-zircon-sys",
  349. ]
  350. [[package]]
  351. name = "fuchsia-zircon-sys"
  352. version = "0.3.3"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  355. [[package]]
  356. name = "futures"
  357. version = "0.3.13"
  358. source = "registry+https://github.com/rust-lang/crates.io-index"
  359. checksum = "7f55667319111d593ba876406af7c409c0ebb44dc4be6132a783ccf163ea14c1"
  360. dependencies = [
  361. "futures-channel",
  362. "futures-core",
  363. "futures-executor",
  364. "futures-io",
  365. "futures-sink",
  366. "futures-task",
  367. "futures-util",
  368. ]
  369. [[package]]
  370. name = "futures-channel"
  371. version = "0.3.13"
  372. source = "registry+https://github.com/rust-lang/crates.io-index"
  373. checksum = "8c2dd2df839b57db9ab69c2c9d8f3e8c81984781937fe2807dc6dcf3b2ad2939"
  374. dependencies = [
  375. "futures-core",
  376. "futures-sink",
  377. ]
  378. [[package]]
  379. name = "futures-core"
  380. version = "0.3.13"
  381. source = "registry+https://github.com/rust-lang/crates.io-index"
  382. checksum = "15496a72fabf0e62bdc3df11a59a3787429221dd0710ba8ef163d6f7a9112c94"
  383. [[package]]
  384. name = "futures-executor"
  385. version = "0.3.13"
  386. source = "registry+https://github.com/rust-lang/crates.io-index"
  387. checksum = "891a4b7b96d84d5940084b2a37632dd65deeae662c114ceaa2c879629c9c0ad1"
  388. dependencies = [
  389. "futures-core",
  390. "futures-task",
  391. "futures-util",
  392. ]
  393. [[package]]
  394. name = "futures-io"
  395. version = "0.3.13"
  396. source = "registry+https://github.com/rust-lang/crates.io-index"
  397. checksum = "d71c2c65c57704c32f5241c1223167c2c3294fd34ac020c807ddbe6db287ba59"
  398. [[package]]
  399. name = "futures-macro"
  400. version = "0.3.13"
  401. source = "registry+https://github.com/rust-lang/crates.io-index"
  402. checksum = "ea405816a5139fb39af82c2beb921d52143f556038378d6db21183a5c37fbfb7"
  403. dependencies = [
  404. "proc-macro-hack",
  405. "proc-macro2",
  406. "quote",
  407. "syn",
  408. ]
  409. [[package]]
  410. name = "futures-sink"
  411. version = "0.3.13"
  412. source = "registry+https://github.com/rust-lang/crates.io-index"
  413. checksum = "85754d98985841b7d4f5e8e6fbfa4a4ac847916893ec511a2917ccd8525b8bb3"
  414. [[package]]
  415. name = "futures-task"
  416. version = "0.3.13"
  417. source = "registry+https://github.com/rust-lang/crates.io-index"
  418. checksum = "fa189ef211c15ee602667a6fcfe1c1fd9e07d42250d2156382820fba33c9df80"
  419. [[package]]
  420. name = "futures-util"
  421. version = "0.3.13"
  422. source = "registry+https://github.com/rust-lang/crates.io-index"
  423. checksum = "1812c7ab8aedf8d6f2701a43e1243acdbcc2b36ab26e2ad421eb99ac963d96d1"
  424. dependencies = [
  425. "futures-channel",
  426. "futures-core",
  427. "futures-io",
  428. "futures-macro",
  429. "futures-sink",
  430. "futures-task",
  431. "memchr",
  432. "pin-project-lite 0.2.4",
  433. "pin-utils",
  434. "proc-macro-hack",
  435. "proc-macro-nested",
  436. "slab",
  437. ]
  438. [[package]]
  439. name = "generic-array"
  440. version = "0.12.3"
  441. source = "registry+https://github.com/rust-lang/crates.io-index"
  442. checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
  443. dependencies = [
  444. "typenum",
  445. ]
  446. [[package]]
  447. name = "generic-array"
  448. version = "0.14.3"
  449. source = "registry+https://github.com/rust-lang/crates.io-index"
  450. checksum = "60fb4bb6bba52f78a471264d9a3b7d026cc0af47b22cd2cffbc0b787ca003e63"
  451. dependencies = [
  452. "typenum",
  453. "version_check",
  454. ]
  455. [[package]]
  456. name = "getopts"
  457. version = "0.2.21"
  458. source = "registry+https://github.com/rust-lang/crates.io-index"
  459. checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
  460. dependencies = [
  461. "unicode-width",
  462. ]
  463. [[package]]
  464. name = "getrandom"
  465. version = "0.1.16"
  466. source = "registry+https://github.com/rust-lang/crates.io-index"
  467. checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
  468. dependencies = [
  469. "cfg-if 1.0.0",
  470. "libc",
  471. "wasi 0.9.0+wasi-snapshot-preview1",
  472. ]
  473. [[package]]
  474. name = "getrandom"
  475. version = "0.2.1"
  476. source = "registry+https://github.com/rust-lang/crates.io-index"
  477. checksum = "4060f4657be78b8e766215b02b18a2e862d83745545de804638e2b545e81aee6"
  478. dependencies = [
  479. "cfg-if 1.0.0",
  480. "libc",
  481. "wasi 0.10.0+wasi-snapshot-preview1",
  482. ]
  483. [[package]]
  484. name = "gimli"
  485. version = "0.23.0"
  486. source = "registry+https://github.com/rust-lang/crates.io-index"
  487. checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce"
  488. [[package]]
  489. name = "glob"
  490. version = "0.3.0"
  491. source = "registry+https://github.com/rust-lang/crates.io-index"
  492. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  493. [[package]]
  494. name = "globset"
  495. version = "0.4.6"
  496. source = "registry+https://github.com/rust-lang/crates.io-index"
  497. checksum = "c152169ef1e421390738366d2f796655fec62621dabbd0fd476f905934061e4a"
  498. dependencies = [
  499. "aho-corasick",
  500. "bstr",
  501. "fnv",
  502. "log",
  503. "regex",
  504. ]
  505. [[package]]
  506. name = "globwalk"
  507. version = "0.8.1"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
  510. dependencies = [
  511. "bitflags",
  512. "ignore",
  513. "walkdir",
  514. ]
  515. [[package]]
  516. name = "h2"
  517. version = "0.2.7"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
  520. dependencies = [
  521. "bytes 0.5.6",
  522. "fnv",
  523. "futures-core",
  524. "futures-sink",
  525. "futures-util",
  526. "http",
  527. "indexmap",
  528. "slab",
  529. "tokio",
  530. "tokio-util",
  531. "tracing",
  532. "tracing-futures",
  533. ]
  534. [[package]]
  535. name = "hashbrown"
  536. version = "0.9.1"
  537. source = "registry+https://github.com/rust-lang/crates.io-index"
  538. checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
  539. [[package]]
  540. name = "hermit-abi"
  541. version = "0.1.18"
  542. source = "registry+https://github.com/rust-lang/crates.io-index"
  543. checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
  544. dependencies = [
  545. "libc",
  546. ]
  547. [[package]]
  548. name = "hex"
  549. version = "0.4.2"
  550. source = "registry+https://github.com/rust-lang/crates.io-index"
  551. checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
  552. [[package]]
  553. name = "hmac"
  554. version = "0.9.0"
  555. source = "registry+https://github.com/rust-lang/crates.io-index"
  556. checksum = "deae6d9dbb35ec2c502d62b8f7b1c000a0822c3b0794ba36b3149c0a1c840dff"
  557. dependencies = [
  558. "crypto-mac",
  559. "digest 0.9.0",
  560. ]
  561. [[package]]
  562. name = "http"
  563. version = "0.2.3"
  564. source = "registry+https://github.com/rust-lang/crates.io-index"
  565. checksum = "7245cd7449cc792608c3c8a9eaf69bd4eabbabf802713748fd739c98b82f0747"
  566. dependencies = [
  567. "bytes 1.0.0",
  568. "fnv",
  569. "itoa",
  570. ]
  571. [[package]]
  572. name = "http-body"
  573. version = "0.3.1"
  574. source = "registry+https://github.com/rust-lang/crates.io-index"
  575. checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
  576. dependencies = [
  577. "bytes 0.5.6",
  578. "http",
  579. ]
  580. [[package]]
  581. name = "httparse"
  582. version = "1.3.5"
  583. source = "registry+https://github.com/rust-lang/crates.io-index"
  584. checksum = "615caabe2c3160b313d52ccc905335f4ed5f10881dd63dc5699d47e90be85691"
  585. [[package]]
  586. name = "httpdate"
  587. version = "0.3.2"
  588. source = "registry+https://github.com/rust-lang/crates.io-index"
  589. checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
  590. [[package]]
  591. name = "humantime"
  592. version = "1.3.0"
  593. source = "registry+https://github.com/rust-lang/crates.io-index"
  594. checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
  595. dependencies = [
  596. "quick-error",
  597. ]
  598. [[package]]
  599. name = "hyper"
  600. version = "0.13.10"
  601. source = "registry+https://github.com/rust-lang/crates.io-index"
  602. checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb"
  603. dependencies = [
  604. "bytes 0.5.6",
  605. "futures-channel",
  606. "futures-core",
  607. "futures-util",
  608. "h2",
  609. "http",
  610. "http-body",
  611. "httparse",
  612. "httpdate",
  613. "itoa",
  614. "pin-project",
  615. "socket2",
  616. "tokio",
  617. "tower-service",
  618. "tracing",
  619. "want",
  620. ]
  621. [[package]]
  622. name = "hyper-tls"
  623. version = "0.4.3"
  624. source = "registry+https://github.com/rust-lang/crates.io-index"
  625. checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed"
  626. dependencies = [
  627. "bytes 0.5.6",
  628. "hyper",
  629. "native-tls",
  630. "tokio",
  631. "tokio-tls",
  632. ]
  633. [[package]]
  634. name = "hyperx"
  635. version = "1.3.0"
  636. source = "registry+https://github.com/rust-lang/crates.io-index"
  637. checksum = "82566a1ace7f56f604d83b7b2c259c78e243d99c565f23d7b4ae34466442c5a2"
  638. dependencies = [
  639. "base64 0.13.0",
  640. "bytes 1.0.0",
  641. "http",
  642. "httparse",
  643. "httpdate",
  644. "language-tags",
  645. "mime",
  646. "percent-encoding",
  647. "unicase",
  648. ]
  649. [[package]]
  650. name = "idna"
  651. version = "0.2.2"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "89829a5d69c23d348314a7ac337fe39173b61149a9864deabd260983aed48c21"
  654. dependencies = [
  655. "matches",
  656. "unicode-bidi",
  657. "unicode-normalization",
  658. ]
  659. [[package]]
  660. name = "ignore"
  661. version = "0.4.17"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "b287fb45c60bb826a0dc68ff08742b9d88a2fea13d6e0c286b3172065aaf878c"
  664. dependencies = [
  665. "crossbeam-utils",
  666. "globset",
  667. "lazy_static",
  668. "log",
  669. "memchr",
  670. "regex",
  671. "same-file",
  672. "thread_local",
  673. "walkdir",
  674. "winapi-util",
  675. ]
  676. [[package]]
  677. name = "indexmap"
  678. version = "1.6.1"
  679. source = "registry+https://github.com/rust-lang/crates.io-index"
  680. checksum = "4fb1fa934250de4de8aef298d81c729a7d33d8c239daa3a7575e6b92bfc7313b"
  681. dependencies = [
  682. "autocfg",
  683. "hashbrown",
  684. "serde",
  685. ]
  686. [[package]]
  687. name = "instant"
  688. version = "0.1.9"
  689. source = "registry+https://github.com/rust-lang/crates.io-index"
  690. checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
  691. dependencies = [
  692. "cfg-if 1.0.0",
  693. ]
  694. [[package]]
  695. name = "iovec"
  696. version = "0.1.4"
  697. source = "registry+https://github.com/rust-lang/crates.io-index"
  698. checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  699. dependencies = [
  700. "libc",
  701. ]
  702. [[package]]
  703. name = "ipnet"
  704. version = "2.3.0"
  705. source = "registry+https://github.com/rust-lang/crates.io-index"
  706. checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
  707. [[package]]
  708. name = "itoa"
  709. version = "0.4.7"
  710. source = "registry+https://github.com/rust-lang/crates.io-index"
  711. checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
  712. [[package]]
  713. name = "js-sys"
  714. version = "0.3.48"
  715. source = "registry+https://github.com/rust-lang/crates.io-index"
  716. checksum = "dc9f84f9b115ce7843d60706df1422a916680bfdfcbdb0447c5614ff9d7e4d78"
  717. dependencies = [
  718. "wasm-bindgen",
  719. ]
  720. [[package]]
  721. name = "kernel32-sys"
  722. version = "0.2.2"
  723. source = "registry+https://github.com/rust-lang/crates.io-index"
  724. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  725. dependencies = [
  726. "winapi 0.2.8",
  727. "winapi-build",
  728. ]
  729. [[package]]
  730. name = "language-tags"
  731. version = "0.2.2"
  732. source = "registry+https://github.com/rust-lang/crates.io-index"
  733. checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
  734. [[package]]
  735. name = "lazy_static"
  736. version = "1.4.0"
  737. source = "registry+https://github.com/rust-lang/crates.io-index"
  738. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  739. [[package]]
  740. name = "libc"
  741. version = "0.2.86"
  742. source = "registry+https://github.com/rust-lang/crates.io-index"
  743. checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
  744. [[package]]
  745. name = "lock_api"
  746. version = "0.4.2"
  747. source = "registry+https://github.com/rust-lang/crates.io-index"
  748. checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
  749. dependencies = [
  750. "scopeguard",
  751. ]
  752. [[package]]
  753. name = "log"
  754. version = "0.4.14"
  755. source = "registry+https://github.com/rust-lang/crates.io-index"
  756. checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
  757. dependencies = [
  758. "cfg-if 1.0.0",
  759. ]
  760. [[package]]
  761. name = "maplit"
  762. version = "1.0.2"
  763. source = "registry+https://github.com/rust-lang/crates.io-index"
  764. checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
  765. [[package]]
  766. name = "matches"
  767. version = "0.1.8"
  768. source = "registry+https://github.com/rust-lang/crates.io-index"
  769. checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  770. [[package]]
  771. name = "md5"
  772. version = "0.7.0"
  773. source = "registry+https://github.com/rust-lang/crates.io-index"
  774. checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
  775. [[package]]
  776. name = "memchr"
  777. version = "2.3.4"
  778. source = "registry+https://github.com/rust-lang/crates.io-index"
  779. checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
  780. [[package]]
  781. name = "mime"
  782. version = "0.3.16"
  783. source = "registry+https://github.com/rust-lang/crates.io-index"
  784. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  785. [[package]]
  786. name = "mime_guess"
  787. version = "2.0.3"
  788. source = "registry+https://github.com/rust-lang/crates.io-index"
  789. checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
  790. dependencies = [
  791. "mime",
  792. "unicase",
  793. ]
  794. [[package]]
  795. name = "miniz_oxide"
  796. version = "0.4.4"
  797. source = "registry+https://github.com/rust-lang/crates.io-index"
  798. checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
  799. dependencies = [
  800. "adler",
  801. "autocfg",
  802. ]
  803. [[package]]
  804. name = "mio"
  805. version = "0.6.23"
  806. source = "registry+https://github.com/rust-lang/crates.io-index"
  807. checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
  808. dependencies = [
  809. "cfg-if 0.1.10",
  810. "fuchsia-zircon",
  811. "fuchsia-zircon-sys",
  812. "iovec",
  813. "kernel32-sys",
  814. "libc",
  815. "log",
  816. "miow",
  817. "net2",
  818. "slab",
  819. "winapi 0.2.8",
  820. ]
  821. [[package]]
  822. name = "mio-uds"
  823. version = "0.6.8"
  824. source = "registry+https://github.com/rust-lang/crates.io-index"
  825. checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
  826. dependencies = [
  827. "iovec",
  828. "libc",
  829. "mio",
  830. ]
  831. [[package]]
  832. name = "miow"
  833. version = "0.2.2"
  834. source = "registry+https://github.com/rust-lang/crates.io-index"
  835. checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
  836. dependencies = [
  837. "kernel32-sys",
  838. "net2",
  839. "winapi 0.2.8",
  840. "ws2_32-sys",
  841. ]
  842. [[package]]
  843. name = "native-tls"
  844. version = "0.2.7"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4"
  847. dependencies = [
  848. "lazy_static",
  849. "libc",
  850. "log",
  851. "openssl",
  852. "openssl-probe",
  853. "openssl-sys",
  854. "schannel",
  855. "security-framework",
  856. "security-framework-sys",
  857. "tempfile",
  858. ]
  859. [[package]]
  860. name = "net2"
  861. version = "0.2.37"
  862. source = "registry+https://github.com/rust-lang/crates.io-index"
  863. checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
  864. dependencies = [
  865. "cfg-if 0.1.10",
  866. "libc",
  867. "winapi 0.3.9",
  868. ]
  869. [[package]]
  870. name = "num-integer"
  871. version = "0.1.44"
  872. source = "registry+https://github.com/rust-lang/crates.io-index"
  873. checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
  874. dependencies = [
  875. "autocfg",
  876. "num-traits",
  877. ]
  878. [[package]]
  879. name = "num-traits"
  880. version = "0.2.14"
  881. source = "registry+https://github.com/rust-lang/crates.io-index"
  882. checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
  883. dependencies = [
  884. "autocfg",
  885. ]
  886. [[package]]
  887. name = "num_cpus"
  888. version = "1.13.0"
  889. source = "registry+https://github.com/rust-lang/crates.io-index"
  890. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  891. dependencies = [
  892. "hermit-abi",
  893. "libc",
  894. ]
  895. [[package]]
  896. name = "object"
  897. version = "0.23.0"
  898. source = "registry+https://github.com/rust-lang/crates.io-index"
  899. checksum = "a9a7ab5d64814df0fe4a4b5ead45ed6c5f181ee3ff04ba344313a6c80446c5d4"
  900. [[package]]
  901. name = "octocrab"
  902. version = "0.5.0"
  903. source = "registry+https://github.com/rust-lang/crates.io-index"
  904. checksum = "63d3ac5571f6f610e3b58713bbeaa9ddb5532e89ab3467165b91d7ecb258c275"
  905. dependencies = [
  906. "arc-swap",
  907. "async-trait",
  908. "base64 0.12.3",
  909. "bytes 0.5.6",
  910. "chrono",
  911. "hyperx",
  912. "once_cell",
  913. "reqwest",
  914. "serde",
  915. "serde_json",
  916. "serde_path_to_error",
  917. "snafu",
  918. "url",
  919. ]
  920. [[package]]
  921. name = "once_cell"
  922. version = "1.7.0"
  923. source = "registry+https://github.com/rust-lang/crates.io-index"
  924. checksum = "10acf907b94fc1b1a152d08ef97e7759650268cf986bf127f387e602b02c7e5a"
  925. [[package]]
  926. name = "opaque-debug"
  927. version = "0.2.3"
  928. source = "registry+https://github.com/rust-lang/crates.io-index"
  929. checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
  930. [[package]]
  931. name = "opaque-debug"
  932. version = "0.3.0"
  933. source = "registry+https://github.com/rust-lang/crates.io-index"
  934. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  935. [[package]]
  936. name = "openssl"
  937. version = "0.10.32"
  938. source = "registry+https://github.com/rust-lang/crates.io-index"
  939. checksum = "038d43985d1ddca7a9900630d8cd031b56e4794eecc2e9ea39dd17aa04399a70"
  940. dependencies = [
  941. "bitflags",
  942. "cfg-if 1.0.0",
  943. "foreign-types",
  944. "lazy_static",
  945. "libc",
  946. "openssl-sys",
  947. ]
  948. [[package]]
  949. name = "openssl-probe"
  950. version = "0.1.2"
  951. source = "registry+https://github.com/rust-lang/crates.io-index"
  952. checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
  953. [[package]]
  954. name = "openssl-sys"
  955. version = "0.9.60"
  956. source = "registry+https://github.com/rust-lang/crates.io-index"
  957. checksum = "921fc71883267538946025deffb622905ecad223c28efbfdef9bb59a0175f3e6"
  958. dependencies = [
  959. "autocfg",
  960. "cc",
  961. "libc",
  962. "pkg-config",
  963. "vcpkg",
  964. ]
  965. [[package]]
  966. name = "parking_lot"
  967. version = "0.11.1"
  968. source = "registry+https://github.com/rust-lang/crates.io-index"
  969. checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
  970. dependencies = [
  971. "instant",
  972. "lock_api",
  973. "parking_lot_core",
  974. ]
  975. [[package]]
  976. name = "parking_lot_core"
  977. version = "0.8.3"
  978. source = "registry+https://github.com/rust-lang/crates.io-index"
  979. checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
  980. dependencies = [
  981. "cfg-if 1.0.0",
  982. "instant",
  983. "libc",
  984. "redox_syscall",
  985. "smallvec",
  986. "winapi 0.3.9",
  987. ]
  988. [[package]]
  989. name = "parser"
  990. version = "0.1.0"
  991. dependencies = [
  992. "log",
  993. "pulldown-cmark",
  994. ]
  995. [[package]]
  996. name = "percent-encoding"
  997. version = "2.1.0"
  998. source = "registry+https://github.com/rust-lang/crates.io-index"
  999. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  1000. [[package]]
  1001. name = "pest"
  1002. version = "2.1.3"
  1003. source = "registry+https://github.com/rust-lang/crates.io-index"
  1004. checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
  1005. dependencies = [
  1006. "ucd-trie",
  1007. ]
  1008. [[package]]
  1009. name = "pest_derive"
  1010. version = "2.1.0"
  1011. source = "registry+https://github.com/rust-lang/crates.io-index"
  1012. checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
  1013. dependencies = [
  1014. "pest",
  1015. "pest_generator",
  1016. ]
  1017. [[package]]
  1018. name = "pest_generator"
  1019. version = "2.1.3"
  1020. source = "registry+https://github.com/rust-lang/crates.io-index"
  1021. checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
  1022. dependencies = [
  1023. "pest",
  1024. "pest_meta",
  1025. "proc-macro2",
  1026. "quote",
  1027. "syn",
  1028. ]
  1029. [[package]]
  1030. name = "pest_meta"
  1031. version = "2.1.3"
  1032. source = "registry+https://github.com/rust-lang/crates.io-index"
  1033. checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
  1034. dependencies = [
  1035. "maplit",
  1036. "pest",
  1037. "sha-1",
  1038. ]
  1039. [[package]]
  1040. name = "phf"
  1041. version = "0.8.0"
  1042. source = "registry+https://github.com/rust-lang/crates.io-index"
  1043. checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  1044. dependencies = [
  1045. "phf_shared",
  1046. ]
  1047. [[package]]
  1048. name = "phf_shared"
  1049. version = "0.8.0"
  1050. source = "registry+https://github.com/rust-lang/crates.io-index"
  1051. checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  1052. dependencies = [
  1053. "siphasher",
  1054. ]
  1055. [[package]]
  1056. name = "pin-project"
  1057. version = "1.0.5"
  1058. source = "registry+https://github.com/rust-lang/crates.io-index"
  1059. checksum = "96fa8ebb90271c4477f144354485b8068bd8f6b78b428b01ba892ca26caf0b63"
  1060. dependencies = [
  1061. "pin-project-internal",
  1062. ]
  1063. [[package]]
  1064. name = "pin-project-internal"
  1065. version = "1.0.5"
  1066. source = "registry+https://github.com/rust-lang/crates.io-index"
  1067. checksum = "758669ae3558c6f74bd2a18b41f7ac0b5a195aea6639d6a9b5e5d1ad5ba24c0b"
  1068. dependencies = [
  1069. "proc-macro2",
  1070. "quote",
  1071. "syn",
  1072. ]
  1073. [[package]]
  1074. name = "pin-project-lite"
  1075. version = "0.1.11"
  1076. source = "registry+https://github.com/rust-lang/crates.io-index"
  1077. checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
  1078. [[package]]
  1079. name = "pin-project-lite"
  1080. version = "0.2.4"
  1081. source = "registry+https://github.com/rust-lang/crates.io-index"
  1082. checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827"
  1083. [[package]]
  1084. name = "pin-utils"
  1085. version = "0.1.0"
  1086. source = "registry+https://github.com/rust-lang/crates.io-index"
  1087. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  1088. [[package]]
  1089. name = "pkg-config"
  1090. version = "0.3.19"
  1091. source = "registry+https://github.com/rust-lang/crates.io-index"
  1092. checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
  1093. [[package]]
  1094. name = "postgres-native-tls"
  1095. version = "0.3.0"
  1096. source = "registry+https://github.com/rust-lang/crates.io-index"
  1097. checksum = "616bfdeeb542b2b0d444391dbcdd91e9a800bc7f35950c9741fe24b07e958900"
  1098. dependencies = [
  1099. "bytes 0.5.6",
  1100. "futures",
  1101. "native-tls",
  1102. "tokio",
  1103. "tokio-postgres",
  1104. "tokio-tls",
  1105. ]
  1106. [[package]]
  1107. name = "postgres-protocol"
  1108. version = "0.5.3"
  1109. source = "registry+https://github.com/rust-lang/crates.io-index"
  1110. checksum = "4888a0e36637ab38d76cace88c1476937d617ad015f07f6b669cec11beacc019"
  1111. dependencies = [
  1112. "base64 0.13.0",
  1113. "byteorder",
  1114. "bytes 0.5.6",
  1115. "fallible-iterator",
  1116. "hmac",
  1117. "md5",
  1118. "memchr",
  1119. "rand 0.7.3",
  1120. "sha2",
  1121. "stringprep",
  1122. ]
  1123. [[package]]
  1124. name = "postgres-types"
  1125. version = "0.1.3"
  1126. source = "registry+https://github.com/rust-lang/crates.io-index"
  1127. checksum = "cfc08a7d94a80665de4a83942fa8db2fdeaf2f123fc0535e384dc4fff251efae"
  1128. dependencies = [
  1129. "bytes 0.5.6",
  1130. "chrono",
  1131. "fallible-iterator",
  1132. "postgres-protocol",
  1133. ]
  1134. [[package]]
  1135. name = "ppv-lite86"
  1136. version = "0.2.10"
  1137. source = "registry+https://github.com/rust-lang/crates.io-index"
  1138. checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
  1139. [[package]]
  1140. name = "proc-macro-hack"
  1141. version = "0.5.19"
  1142. source = "registry+https://github.com/rust-lang/crates.io-index"
  1143. checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
  1144. [[package]]
  1145. name = "proc-macro-nested"
  1146. version = "0.1.7"
  1147. source = "registry+https://github.com/rust-lang/crates.io-index"
  1148. checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
  1149. [[package]]
  1150. name = "proc-macro2"
  1151. version = "1.0.24"
  1152. source = "registry+https://github.com/rust-lang/crates.io-index"
  1153. checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
  1154. dependencies = [
  1155. "unicode-xid",
  1156. ]
  1157. [[package]]
  1158. name = "pulldown-cmark"
  1159. version = "0.7.2"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "ca36dea94d187597e104a5c8e4b07576a8a45aa5db48a65e12940d3eb7461f55"
  1162. dependencies = [
  1163. "bitflags",
  1164. "getopts",
  1165. "memchr",
  1166. "unicase",
  1167. ]
  1168. [[package]]
  1169. name = "quick-error"
  1170. version = "1.2.3"
  1171. source = "registry+https://github.com/rust-lang/crates.io-index"
  1172. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  1173. [[package]]
  1174. name = "quote"
  1175. version = "1.0.9"
  1176. source = "registry+https://github.com/rust-lang/crates.io-index"
  1177. checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
  1178. dependencies = [
  1179. "proc-macro2",
  1180. ]
  1181. [[package]]
  1182. name = "rand"
  1183. version = "0.7.3"
  1184. source = "registry+https://github.com/rust-lang/crates.io-index"
  1185. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  1186. dependencies = [
  1187. "getrandom 0.1.16",
  1188. "libc",
  1189. "rand_chacha 0.2.2",
  1190. "rand_core 0.5.1",
  1191. "rand_hc 0.2.0",
  1192. ]
  1193. [[package]]
  1194. name = "rand"
  1195. version = "0.8.1"
  1196. source = "registry+https://github.com/rust-lang/crates.io-index"
  1197. checksum = "c24fcd450d3fa2b592732565aa4f17a27a61c65ece4726353e000939b0edee34"
  1198. dependencies = [
  1199. "libc",
  1200. "rand_chacha 0.3.0",
  1201. "rand_core 0.6.1",
  1202. "rand_hc 0.3.0",
  1203. ]
  1204. [[package]]
  1205. name = "rand_chacha"
  1206. version = "0.2.2"
  1207. source = "registry+https://github.com/rust-lang/crates.io-index"
  1208. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  1209. dependencies = [
  1210. "ppv-lite86",
  1211. "rand_core 0.5.1",
  1212. ]
  1213. [[package]]
  1214. name = "rand_chacha"
  1215. version = "0.3.0"
  1216. source = "registry+https://github.com/rust-lang/crates.io-index"
  1217. checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
  1218. dependencies = [
  1219. "ppv-lite86",
  1220. "rand_core 0.6.1",
  1221. ]
  1222. [[package]]
  1223. name = "rand_core"
  1224. version = "0.5.1"
  1225. source = "registry+https://github.com/rust-lang/crates.io-index"
  1226. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  1227. dependencies = [
  1228. "getrandom 0.1.16",
  1229. ]
  1230. [[package]]
  1231. name = "rand_core"
  1232. version = "0.6.1"
  1233. source = "registry+https://github.com/rust-lang/crates.io-index"
  1234. checksum = "c026d7df8b298d90ccbbc5190bd04d85e159eaf5576caeacf8741da93ccbd2e5"
  1235. dependencies = [
  1236. "getrandom 0.2.1",
  1237. ]
  1238. [[package]]
  1239. name = "rand_hc"
  1240. version = "0.2.0"
  1241. source = "registry+https://github.com/rust-lang/crates.io-index"
  1242. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  1243. dependencies = [
  1244. "rand_core 0.5.1",
  1245. ]
  1246. [[package]]
  1247. name = "rand_hc"
  1248. version = "0.3.0"
  1249. source = "registry+https://github.com/rust-lang/crates.io-index"
  1250. checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
  1251. dependencies = [
  1252. "rand_core 0.6.1",
  1253. ]
  1254. [[package]]
  1255. name = "redox_syscall"
  1256. version = "0.2.5"
  1257. source = "registry+https://github.com/rust-lang/crates.io-index"
  1258. checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9"
  1259. dependencies = [
  1260. "bitflags",
  1261. ]
  1262. [[package]]
  1263. name = "regex"
  1264. version = "1.4.3"
  1265. source = "registry+https://github.com/rust-lang/crates.io-index"
  1266. checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a"
  1267. dependencies = [
  1268. "aho-corasick",
  1269. "memchr",
  1270. "regex-syntax",
  1271. "thread_local",
  1272. ]
  1273. [[package]]
  1274. name = "regex-syntax"
  1275. version = "0.6.22"
  1276. source = "registry+https://github.com/rust-lang/crates.io-index"
  1277. checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581"
  1278. [[package]]
  1279. name = "remove_dir_all"
  1280. version = "0.5.3"
  1281. source = "registry+https://github.com/rust-lang/crates.io-index"
  1282. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  1283. dependencies = [
  1284. "winapi 0.3.9",
  1285. ]
  1286. [[package]]
  1287. name = "reqwest"
  1288. version = "0.10.10"
  1289. source = "registry+https://github.com/rust-lang/crates.io-index"
  1290. checksum = "0718f81a8e14c4dbb3b34cf23dc6aaf9ab8a0dfec160c534b3dbca1aaa21f47c"
  1291. dependencies = [
  1292. "base64 0.13.0",
  1293. "bytes 0.5.6",
  1294. "encoding_rs",
  1295. "futures-core",
  1296. "futures-util",
  1297. "http",
  1298. "http-body",
  1299. "hyper",
  1300. "hyper-tls",
  1301. "ipnet",
  1302. "js-sys",
  1303. "lazy_static",
  1304. "log",
  1305. "mime",
  1306. "mime_guess",
  1307. "native-tls",
  1308. "percent-encoding",
  1309. "pin-project-lite 0.2.4",
  1310. "serde",
  1311. "serde_json",
  1312. "serde_urlencoded",
  1313. "tokio",
  1314. "tokio-tls",
  1315. "url",
  1316. "wasm-bindgen",
  1317. "wasm-bindgen-futures",
  1318. "web-sys",
  1319. "winreg",
  1320. ]
  1321. [[package]]
  1322. name = "rust_team_data"
  1323. version = "1.0.0"
  1324. source = "git+https://github.com/rust-lang/team#d2dc30c84273d8b2390c6a177f72146cd4fd10ac"
  1325. dependencies = [
  1326. "indexmap",
  1327. "serde",
  1328. ]
  1329. [[package]]
  1330. name = "rustc-demangle"
  1331. version = "0.1.18"
  1332. source = "registry+https://github.com/rust-lang/crates.io-index"
  1333. checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232"
  1334. [[package]]
  1335. name = "ryu"
  1336. version = "1.0.5"
  1337. source = "registry+https://github.com/rust-lang/crates.io-index"
  1338. checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  1339. [[package]]
  1340. name = "same-file"
  1341. version = "1.0.6"
  1342. source = "registry+https://github.com/rust-lang/crates.io-index"
  1343. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  1344. dependencies = [
  1345. "winapi-util",
  1346. ]
  1347. [[package]]
  1348. name = "schannel"
  1349. version = "0.1.19"
  1350. source = "registry+https://github.com/rust-lang/crates.io-index"
  1351. checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
  1352. dependencies = [
  1353. "lazy_static",
  1354. "winapi 0.3.9",
  1355. ]
  1356. [[package]]
  1357. name = "scopeguard"
  1358. version = "1.1.0"
  1359. source = "registry+https://github.com/rust-lang/crates.io-index"
  1360. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  1361. [[package]]
  1362. name = "security-framework"
  1363. version = "2.1.1"
  1364. source = "registry+https://github.com/rust-lang/crates.io-index"
  1365. checksum = "2dfd318104249865096c8da1dfabf09ddbb6d0330ea176812a62ec75e40c4166"
  1366. dependencies = [
  1367. "bitflags",
  1368. "core-foundation",
  1369. "core-foundation-sys",
  1370. "libc",
  1371. "security-framework-sys",
  1372. ]
  1373. [[package]]
  1374. name = "security-framework-sys"
  1375. version = "2.1.1"
  1376. source = "registry+https://github.com/rust-lang/crates.io-index"
  1377. checksum = "dee48cdde5ed250b0d3252818f646e174ab414036edb884dde62d80a3ac6082d"
  1378. dependencies = [
  1379. "core-foundation-sys",
  1380. "libc",
  1381. ]
  1382. [[package]]
  1383. name = "serde"
  1384. version = "1.0.123"
  1385. source = "registry+https://github.com/rust-lang/crates.io-index"
  1386. checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae"
  1387. dependencies = [
  1388. "serde_derive",
  1389. ]
  1390. [[package]]
  1391. name = "serde_derive"
  1392. version = "1.0.123"
  1393. source = "registry+https://github.com/rust-lang/crates.io-index"
  1394. checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31"
  1395. dependencies = [
  1396. "proc-macro2",
  1397. "quote",
  1398. "syn",
  1399. ]
  1400. [[package]]
  1401. name = "serde_json"
  1402. version = "1.0.64"
  1403. source = "registry+https://github.com/rust-lang/crates.io-index"
  1404. checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
  1405. dependencies = [
  1406. "itoa",
  1407. "ryu",
  1408. "serde",
  1409. ]
  1410. [[package]]
  1411. name = "serde_path_to_error"
  1412. version = "0.1.4"
  1413. source = "registry+https://github.com/rust-lang/crates.io-index"
  1414. checksum = "42f6109f0506e20f7e0f910e51a0079acf41da8e0694e6442527c4ddf5a2b158"
  1415. dependencies = [
  1416. "serde",
  1417. ]
  1418. [[package]]
  1419. name = "serde_urlencoded"
  1420. version = "0.7.0"
  1421. source = "registry+https://github.com/rust-lang/crates.io-index"
  1422. checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
  1423. dependencies = [
  1424. "form_urlencoded",
  1425. "itoa",
  1426. "ryu",
  1427. "serde",
  1428. ]
  1429. [[package]]
  1430. name = "sha-1"
  1431. version = "0.8.2"
  1432. source = "registry+https://github.com/rust-lang/crates.io-index"
  1433. checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
  1434. dependencies = [
  1435. "block-buffer 0.7.3",
  1436. "digest 0.8.1",
  1437. "fake-simd",
  1438. "opaque-debug 0.2.3",
  1439. ]
  1440. [[package]]
  1441. name = "sha2"
  1442. version = "0.9.3"
  1443. source = "registry+https://github.com/rust-lang/crates.io-index"
  1444. checksum = "fa827a14b29ab7f44778d14a88d3cb76e949c45083f7dbfa507d0cb699dc12de"
  1445. dependencies = [
  1446. "block-buffer 0.9.0",
  1447. "cfg-if 1.0.0",
  1448. "cpuid-bool",
  1449. "digest 0.9.0",
  1450. "opaque-debug 0.3.0",
  1451. ]
  1452. [[package]]
  1453. name = "shell-words"
  1454. version = "1.0.0"
  1455. source = "registry+https://github.com/rust-lang/crates.io-index"
  1456. checksum = "b6fa3938c99da4914afedd13bf3d79bcb6c277d1b2c398d23257a304d9e1b074"
  1457. [[package]]
  1458. name = "siphasher"
  1459. version = "0.3.3"
  1460. source = "registry+https://github.com/rust-lang/crates.io-index"
  1461. checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7"
  1462. [[package]]
  1463. name = "slab"
  1464. version = "0.4.2"
  1465. source = "registry+https://github.com/rust-lang/crates.io-index"
  1466. checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  1467. [[package]]
  1468. name = "smallvec"
  1469. version = "1.6.1"
  1470. source = "registry+https://github.com/rust-lang/crates.io-index"
  1471. checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
  1472. [[package]]
  1473. name = "snafu"
  1474. version = "0.6.10"
  1475. source = "registry+https://github.com/rust-lang/crates.io-index"
  1476. checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7"
  1477. dependencies = [
  1478. "backtrace",
  1479. "doc-comment",
  1480. "snafu-derive",
  1481. ]
  1482. [[package]]
  1483. name = "snafu-derive"
  1484. version = "0.6.10"
  1485. source = "registry+https://github.com/rust-lang/crates.io-index"
  1486. checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b"
  1487. dependencies = [
  1488. "proc-macro2",
  1489. "quote",
  1490. "syn",
  1491. ]
  1492. [[package]]
  1493. name = "socket2"
  1494. version = "0.3.19"
  1495. source = "registry+https://github.com/rust-lang/crates.io-index"
  1496. checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
  1497. dependencies = [
  1498. "cfg-if 1.0.0",
  1499. "libc",
  1500. "winapi 0.3.9",
  1501. ]
  1502. [[package]]
  1503. name = "stringprep"
  1504. version = "0.1.2"
  1505. source = "registry+https://github.com/rust-lang/crates.io-index"
  1506. checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
  1507. dependencies = [
  1508. "unicode-bidi",
  1509. "unicode-normalization",
  1510. ]
  1511. [[package]]
  1512. name = "strsim"
  1513. version = "0.8.0"
  1514. source = "registry+https://github.com/rust-lang/crates.io-index"
  1515. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  1516. [[package]]
  1517. name = "subtle"
  1518. version = "2.4.0"
  1519. source = "registry+https://github.com/rust-lang/crates.io-index"
  1520. checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
  1521. [[package]]
  1522. name = "syn"
  1523. version = "1.0.60"
  1524. source = "registry+https://github.com/rust-lang/crates.io-index"
  1525. checksum = "c700597eca8a5a762beb35753ef6b94df201c81cca676604f547495a0d7f0081"
  1526. dependencies = [
  1527. "proc-macro2",
  1528. "quote",
  1529. "unicode-xid",
  1530. ]
  1531. [[package]]
  1532. name = "tempfile"
  1533. version = "3.2.0"
  1534. source = "registry+https://github.com/rust-lang/crates.io-index"
  1535. checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
  1536. dependencies = [
  1537. "cfg-if 1.0.0",
  1538. "libc",
  1539. "rand 0.8.1",
  1540. "redox_syscall",
  1541. "remove_dir_all",
  1542. "winapi 0.3.9",
  1543. ]
  1544. [[package]]
  1545. name = "tera"
  1546. version = "1.6.1"
  1547. source = "registry+https://github.com/rust-lang/crates.io-index"
  1548. checksum = "eac6ab7eacf40937241959d540670f06209c38ceadb62116999db4a950fbf8dc"
  1549. dependencies = [
  1550. "globwalk",
  1551. "lazy_static",
  1552. "pest",
  1553. "pest_derive",
  1554. "regex",
  1555. "serde",
  1556. "serde_json",
  1557. ]
  1558. [[package]]
  1559. name = "termcolor"
  1560. version = "1.1.2"
  1561. source = "registry+https://github.com/rust-lang/crates.io-index"
  1562. checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
  1563. dependencies = [
  1564. "winapi-util",
  1565. ]
  1566. [[package]]
  1567. name = "textwrap"
  1568. version = "0.11.0"
  1569. source = "registry+https://github.com/rust-lang/crates.io-index"
  1570. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  1571. dependencies = [
  1572. "unicode-width",
  1573. ]
  1574. [[package]]
  1575. name = "thread_local"
  1576. version = "1.1.3"
  1577. source = "registry+https://github.com/rust-lang/crates.io-index"
  1578. checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
  1579. dependencies = [
  1580. "once_cell",
  1581. ]
  1582. [[package]]
  1583. name = "time"
  1584. version = "0.1.44"
  1585. source = "registry+https://github.com/rust-lang/crates.io-index"
  1586. checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  1587. dependencies = [
  1588. "libc",
  1589. "wasi 0.10.0+wasi-snapshot-preview1",
  1590. "winapi 0.3.9",
  1591. ]
  1592. [[package]]
  1593. name = "tinyvec"
  1594. version = "1.1.1"
  1595. source = "registry+https://github.com/rust-lang/crates.io-index"
  1596. checksum = "317cca572a0e89c3ce0ca1f1bdc9369547fe318a683418e42ac8f59d14701023"
  1597. dependencies = [
  1598. "tinyvec_macros",
  1599. ]
  1600. [[package]]
  1601. name = "tinyvec_macros"
  1602. version = "0.1.0"
  1603. source = "registry+https://github.com/rust-lang/crates.io-index"
  1604. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  1605. [[package]]
  1606. name = "tokio"
  1607. version = "0.2.25"
  1608. source = "registry+https://github.com/rust-lang/crates.io-index"
  1609. checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
  1610. dependencies = [
  1611. "bytes 0.5.6",
  1612. "fnv",
  1613. "futures-core",
  1614. "iovec",
  1615. "lazy_static",
  1616. "libc",
  1617. "memchr",
  1618. "mio",
  1619. "mio-uds",
  1620. "num_cpus",
  1621. "pin-project-lite 0.1.11",
  1622. "slab",
  1623. "tokio-macros",
  1624. ]
  1625. [[package]]
  1626. name = "tokio-macros"
  1627. version = "0.2.6"
  1628. source = "registry+https://github.com/rust-lang/crates.io-index"
  1629. checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a"
  1630. dependencies = [
  1631. "proc-macro2",
  1632. "quote",
  1633. "syn",
  1634. ]
  1635. [[package]]
  1636. name = "tokio-postgres"
  1637. version = "0.5.5"
  1638. source = "registry+https://github.com/rust-lang/crates.io-index"
  1639. checksum = "55a2482c9fe4dd481723cf5c0616f34afc710e55dcda0944e12e7b3316117892"
  1640. dependencies = [
  1641. "async-trait",
  1642. "byteorder",
  1643. "bytes 0.5.6",
  1644. "fallible-iterator",
  1645. "futures",
  1646. "log",
  1647. "parking_lot",
  1648. "percent-encoding",
  1649. "phf",
  1650. "pin-project-lite 0.1.11",
  1651. "postgres-protocol",
  1652. "postgres-types",
  1653. "tokio",
  1654. "tokio-util",
  1655. ]
  1656. [[package]]
  1657. name = "tokio-tls"
  1658. version = "0.3.1"
  1659. source = "registry+https://github.com/rust-lang/crates.io-index"
  1660. checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
  1661. dependencies = [
  1662. "native-tls",
  1663. "tokio",
  1664. ]
  1665. [[package]]
  1666. name = "tokio-util"
  1667. version = "0.3.1"
  1668. source = "registry+https://github.com/rust-lang/crates.io-index"
  1669. checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
  1670. dependencies = [
  1671. "bytes 0.5.6",
  1672. "futures-core",
  1673. "futures-sink",
  1674. "log",
  1675. "pin-project-lite 0.1.11",
  1676. "tokio",
  1677. ]
  1678. [[package]]
  1679. name = "toml"
  1680. version = "0.5.8"
  1681. source = "registry+https://github.com/rust-lang/crates.io-index"
  1682. checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
  1683. dependencies = [
  1684. "serde",
  1685. ]
  1686. [[package]]
  1687. name = "tower-service"
  1688. version = "0.3.1"
  1689. source = "registry+https://github.com/rust-lang/crates.io-index"
  1690. checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
  1691. [[package]]
  1692. name = "tracing"
  1693. version = "0.1.25"
  1694. source = "registry+https://github.com/rust-lang/crates.io-index"
  1695. checksum = "01ebdc2bb4498ab1ab5f5b73c5803825e60199229ccba0698170e3be0e7f959f"
  1696. dependencies = [
  1697. "cfg-if 1.0.0",
  1698. "log",
  1699. "pin-project-lite 0.2.4",
  1700. "tracing-core",
  1701. ]
  1702. [[package]]
  1703. name = "tracing-core"
  1704. version = "0.1.17"
  1705. source = "registry+https://github.com/rust-lang/crates.io-index"
  1706. checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
  1707. dependencies = [
  1708. "lazy_static",
  1709. ]
  1710. [[package]]
  1711. name = "tracing-futures"
  1712. version = "0.2.5"
  1713. source = "registry+https://github.com/rust-lang/crates.io-index"
  1714. checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
  1715. dependencies = [
  1716. "pin-project",
  1717. "tracing",
  1718. ]
  1719. [[package]]
  1720. name = "triagebot"
  1721. version = "0.1.0"
  1722. dependencies = [
  1723. "anyhow",
  1724. "async-trait",
  1725. "chrono",
  1726. "comrak",
  1727. "dotenv",
  1728. "env_logger",
  1729. "futures",
  1730. "glob",
  1731. "hex",
  1732. "hyper",
  1733. "lazy_static",
  1734. "log",
  1735. "native-tls",
  1736. "octocrab",
  1737. "once_cell",
  1738. "openssl",
  1739. "parser",
  1740. "postgres-native-tls",
  1741. "regex",
  1742. "reqwest",
  1743. "rust_team_data",
  1744. "serde",
  1745. "serde_json",
  1746. "serde_path_to_error",
  1747. "tera",
  1748. "tokio",
  1749. "tokio-postgres",
  1750. "toml",
  1751. "url",
  1752. "uuid",
  1753. ]
  1754. [[package]]
  1755. name = "try-lock"
  1756. version = "0.2.3"
  1757. source = "registry+https://github.com/rust-lang/crates.io-index"
  1758. checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
  1759. [[package]]
  1760. name = "twoway"
  1761. version = "0.2.1"
  1762. source = "registry+https://github.com/rust-lang/crates.io-index"
  1763. checksum = "6b40075910de3a912adbd80b5d8bad6ad10a23eeb1f5bf9d4006839e899ba5bc"
  1764. dependencies = [
  1765. "memchr",
  1766. "unchecked-index",
  1767. ]
  1768. [[package]]
  1769. name = "typed-arena"
  1770. version = "1.7.0"
  1771. source = "registry+https://github.com/rust-lang/crates.io-index"
  1772. checksum = "a9b2228007eba4120145f785df0f6c92ea538f5a3635a612ecf4e334c8c1446d"
  1773. [[package]]
  1774. name = "typenum"
  1775. version = "1.12.0"
  1776. source = "registry+https://github.com/rust-lang/crates.io-index"
  1777. checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
  1778. [[package]]
  1779. name = "ucd-trie"
  1780. version = "0.1.3"
  1781. source = "registry+https://github.com/rust-lang/crates.io-index"
  1782. checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
  1783. [[package]]
  1784. name = "unchecked-index"
  1785. version = "0.2.2"
  1786. source = "registry+https://github.com/rust-lang/crates.io-index"
  1787. checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"
  1788. [[package]]
  1789. name = "unicase"
  1790. version = "2.6.0"
  1791. source = "registry+https://github.com/rust-lang/crates.io-index"
  1792. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  1793. dependencies = [
  1794. "version_check",
  1795. ]
  1796. [[package]]
  1797. name = "unicode-bidi"
  1798. version = "0.3.4"
  1799. source = "registry+https://github.com/rust-lang/crates.io-index"
  1800. checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  1801. dependencies = [
  1802. "matches",
  1803. ]
  1804. [[package]]
  1805. name = "unicode-normalization"
  1806. version = "0.1.17"
  1807. source = "registry+https://github.com/rust-lang/crates.io-index"
  1808. checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef"
  1809. dependencies = [
  1810. "tinyvec",
  1811. ]
  1812. [[package]]
  1813. name = "unicode-width"
  1814. version = "0.1.8"
  1815. source = "registry+https://github.com/rust-lang/crates.io-index"
  1816. checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  1817. [[package]]
  1818. name = "unicode-xid"
  1819. version = "0.2.1"
  1820. source = "registry+https://github.com/rust-lang/crates.io-index"
  1821. checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  1822. [[package]]
  1823. name = "unicode_categories"
  1824. version = "0.1.1"
  1825. source = "registry+https://github.com/rust-lang/crates.io-index"
  1826. checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
  1827. [[package]]
  1828. name = "url"
  1829. version = "2.2.1"
  1830. source = "registry+https://github.com/rust-lang/crates.io-index"
  1831. checksum = "9ccd964113622c8e9322cfac19eb1004a07e636c545f325da085d5cdde6f1f8b"
  1832. dependencies = [
  1833. "form_urlencoded",
  1834. "idna",
  1835. "matches",
  1836. "percent-encoding",
  1837. "serde",
  1838. ]
  1839. [[package]]
  1840. name = "uuid"
  1841. version = "0.8.2"
  1842. source = "registry+https://github.com/rust-lang/crates.io-index"
  1843. checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
  1844. dependencies = [
  1845. "getrandom 0.2.1",
  1846. ]
  1847. [[package]]
  1848. name = "vcpkg"
  1849. version = "0.2.11"
  1850. source = "registry+https://github.com/rust-lang/crates.io-index"
  1851. checksum = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb"
  1852. [[package]]
  1853. name = "vec_map"
  1854. version = "0.8.2"
  1855. source = "registry+https://github.com/rust-lang/crates.io-index"
  1856. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  1857. [[package]]
  1858. name = "version_check"
  1859. version = "0.9.2"
  1860. source = "registry+https://github.com/rust-lang/crates.io-index"
  1861. checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
  1862. [[package]]
  1863. name = "walkdir"
  1864. version = "2.3.1"
  1865. source = "registry+https://github.com/rust-lang/crates.io-index"
  1866. checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
  1867. dependencies = [
  1868. "same-file",
  1869. "winapi 0.3.9",
  1870. "winapi-util",
  1871. ]
  1872. [[package]]
  1873. name = "want"
  1874. version = "0.3.0"
  1875. source = "registry+https://github.com/rust-lang/crates.io-index"
  1876. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  1877. dependencies = [
  1878. "log",
  1879. "try-lock",
  1880. ]
  1881. [[package]]
  1882. name = "wasi"
  1883. version = "0.9.0+wasi-snapshot-preview1"
  1884. source = "registry+https://github.com/rust-lang/crates.io-index"
  1885. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  1886. [[package]]
  1887. name = "wasi"
  1888. version = "0.10.0+wasi-snapshot-preview1"
  1889. source = "registry+https://github.com/rust-lang/crates.io-index"
  1890. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  1891. [[package]]
  1892. name = "wasm-bindgen"
  1893. version = "0.2.71"
  1894. source = "registry+https://github.com/rust-lang/crates.io-index"
  1895. checksum = "7ee1280240b7c461d6a0071313e08f34a60b0365f14260362e5a2b17d1d31aa7"
  1896. dependencies = [
  1897. "cfg-if 1.0.0",
  1898. "serde",
  1899. "serde_json",
  1900. "wasm-bindgen-macro",
  1901. ]
  1902. [[package]]
  1903. name = "wasm-bindgen-backend"
  1904. version = "0.2.71"
  1905. source = "registry+https://github.com/rust-lang/crates.io-index"
  1906. checksum = "5b7d8b6942b8bb3a9b0e73fc79b98095a27de6fa247615e59d096754a3bc2aa8"
  1907. dependencies = [
  1908. "bumpalo",
  1909. "lazy_static",
  1910. "log",
  1911. "proc-macro2",
  1912. "quote",
  1913. "syn",
  1914. "wasm-bindgen-shared",
  1915. ]
  1916. [[package]]
  1917. name = "wasm-bindgen-futures"
  1918. version = "0.4.21"
  1919. source = "registry+https://github.com/rust-lang/crates.io-index"
  1920. checksum = "8e67a5806118af01f0d9045915676b22aaebecf4178ae7021bc171dab0b897ab"
  1921. dependencies = [
  1922. "cfg-if 1.0.0",
  1923. "js-sys",
  1924. "wasm-bindgen",
  1925. "web-sys",
  1926. ]
  1927. [[package]]
  1928. name = "wasm-bindgen-macro"
  1929. version = "0.2.71"
  1930. source = "registry+https://github.com/rust-lang/crates.io-index"
  1931. checksum = "e5ac38da8ef716661f0f36c0d8320b89028efe10c7c0afde65baffb496ce0d3b"
  1932. dependencies = [
  1933. "quote",
  1934. "wasm-bindgen-macro-support",
  1935. ]
  1936. [[package]]
  1937. name = "wasm-bindgen-macro-support"
  1938. version = "0.2.71"
  1939. source = "registry+https://github.com/rust-lang/crates.io-index"
  1940. checksum = "cc053ec74d454df287b9374ee8abb36ffd5acb95ba87da3ba5b7d3fe20eb401e"
  1941. dependencies = [
  1942. "proc-macro2",
  1943. "quote",
  1944. "syn",
  1945. "wasm-bindgen-backend",
  1946. "wasm-bindgen-shared",
  1947. ]
  1948. [[package]]
  1949. name = "wasm-bindgen-shared"
  1950. version = "0.2.71"
  1951. source = "registry+https://github.com/rust-lang/crates.io-index"
  1952. checksum = "7d6f8ec44822dd71f5f221a5847fb34acd9060535c1211b70a05844c0f6383b1"
  1953. [[package]]
  1954. name = "web-sys"
  1955. version = "0.3.47"
  1956. source = "registry+https://github.com/rust-lang/crates.io-index"
  1957. checksum = "c40dc691fc48003eba817c38da7113c15698142da971298003cac3ef175680b3"
  1958. dependencies = [
  1959. "js-sys",
  1960. "wasm-bindgen",
  1961. ]
  1962. [[package]]
  1963. name = "winapi"
  1964. version = "0.2.8"
  1965. source = "registry+https://github.com/rust-lang/crates.io-index"
  1966. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  1967. [[package]]
  1968. name = "winapi"
  1969. version = "0.3.9"
  1970. source = "registry+https://github.com/rust-lang/crates.io-index"
  1971. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1972. dependencies = [
  1973. "winapi-i686-pc-windows-gnu",
  1974. "winapi-x86_64-pc-windows-gnu",
  1975. ]
  1976. [[package]]
  1977. name = "winapi-build"
  1978. version = "0.1.1"
  1979. source = "registry+https://github.com/rust-lang/crates.io-index"
  1980. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  1981. [[package]]
  1982. name = "winapi-i686-pc-windows-gnu"
  1983. version = "0.4.0"
  1984. source = "registry+https://github.com/rust-lang/crates.io-index"
  1985. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1986. [[package]]
  1987. name = "winapi-util"
  1988. version = "0.1.5"
  1989. source = "registry+https://github.com/rust-lang/crates.io-index"
  1990. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  1991. dependencies = [
  1992. "winapi 0.3.9",
  1993. ]
  1994. [[package]]
  1995. name = "winapi-x86_64-pc-windows-gnu"
  1996. version = "0.4.0"
  1997. source = "registry+https://github.com/rust-lang/crates.io-index"
  1998. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1999. [[package]]
  2000. name = "winreg"
  2001. version = "0.7.0"
  2002. source = "registry+https://github.com/rust-lang/crates.io-index"
  2003. checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
  2004. dependencies = [
  2005. "winapi 0.3.9",
  2006. ]
  2007. [[package]]
  2008. name = "ws2_32-sys"
  2009. version = "0.2.1"
  2010. source = "registry+https://github.com/rust-lang/crates.io-index"
  2011. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  2012. dependencies = [
  2013. "winapi 0.2.8",
  2014. "winapi-build",
  2015. ]
  2016. [[package]]
  2017. name = "xdg"
  2018. version = "2.2.0"
  2019. source = "registry+https://github.com/rust-lang/crates.io-index"
  2020. checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57"