Cargo.lock 55 KB

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