Cargo.lock 55 KB

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