Cargo.lock 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "addr2line"
  5. version = "0.13.0"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072"
  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.13"
  19. source = "registry+https://github.com/rust-lang/crates.io-index"
  20. checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86"
  21. dependencies = [
  22. "memchr",
  23. ]
  24. [[package]]
  25. name = "anyhow"
  26. version = "1.0.32"
  27. source = "registry+https://github.com/rust-lang/crates.io-index"
  28. checksum = "6b602bfe940d21c130f3895acd65221e8a61270debe89d628b9cb4e3ccb8569b"
  29. [[package]]
  30. name = "arc-swap"
  31. version = "0.4.7"
  32. source = "registry+https://github.com/rust-lang/crates.io-index"
  33. checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
  34. [[package]]
  35. name = "async-trait"
  36. version = "0.1.36"
  37. source = "registry+https://github.com/rust-lang/crates.io-index"
  38. checksum = "a265e3abeffdce30b2e26b7a11b222fe37c6067404001b434101457d0385eb92"
  39. dependencies = [
  40. "proc-macro2",
  41. "quote",
  42. "syn",
  43. ]
  44. [[package]]
  45. name = "atty"
  46. version = "0.2.14"
  47. source = "registry+https://github.com/rust-lang/crates.io-index"
  48. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  49. dependencies = [
  50. "hermit-abi",
  51. "libc",
  52. "winapi 0.3.9",
  53. ]
  54. [[package]]
  55. name = "autocfg"
  56. version = "1.0.0"
  57. source = "registry+https://github.com/rust-lang/crates.io-index"
  58. checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
  59. [[package]]
  60. name = "backtrace"
  61. version = "0.3.50"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "46254cf2fdcdf1badb5934448c1bcbe046a56537b3987d96c51a7afc5d03f293"
  64. dependencies = [
  65. "addr2line",
  66. "cfg-if",
  67. "libc",
  68. "miniz_oxide",
  69. "object",
  70. "rustc-demangle",
  71. ]
  72. [[package]]
  73. name = "base64"
  74. version = "0.11.0"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
  77. [[package]]
  78. name = "base64"
  79. version = "0.12.3"
  80. source = "registry+https://github.com/rust-lang/crates.io-index"
  81. checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
  82. [[package]]
  83. name = "bitflags"
  84. version = "1.2.1"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  87. [[package]]
  88. name = "block-buffer"
  89. version = "0.7.3"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
  92. dependencies = [
  93. "block-padding",
  94. "byte-tools",
  95. "byteorder",
  96. "generic-array 0.12.3",
  97. ]
  98. [[package]]
  99. name = "block-buffer"
  100. version = "0.9.0"
  101. source = "registry+https://github.com/rust-lang/crates.io-index"
  102. checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
  103. dependencies = [
  104. "generic-array 0.14.3",
  105. ]
  106. [[package]]
  107. name = "block-padding"
  108. version = "0.1.5"
  109. source = "registry+https://github.com/rust-lang/crates.io-index"
  110. checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
  111. dependencies = [
  112. "byte-tools",
  113. ]
  114. [[package]]
  115. name = "bstr"
  116. version = "0.2.13"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "31accafdb70df7871592c058eca3985b71104e15ac32f64706022c58867da931"
  119. dependencies = [
  120. "memchr",
  121. ]
  122. [[package]]
  123. name = "bumpalo"
  124. version = "3.4.0"
  125. source = "registry+https://github.com/rust-lang/crates.io-index"
  126. checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
  127. [[package]]
  128. name = "byte-tools"
  129. version = "0.3.1"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
  132. [[package]]
  133. name = "byteorder"
  134. version = "1.3.4"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
  137. [[package]]
  138. name = "bytes"
  139. version = "0.5.6"
  140. source = "registry+https://github.com/rust-lang/crates.io-index"
  141. checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
  142. [[package]]
  143. name = "cc"
  144. version = "1.0.58"
  145. source = "registry+https://github.com/rust-lang/crates.io-index"
  146. checksum = "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518"
  147. [[package]]
  148. name = "cfg-if"
  149. version = "0.1.10"
  150. source = "registry+https://github.com/rust-lang/crates.io-index"
  151. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  152. [[package]]
  153. name = "chrono"
  154. version = "0.4.13"
  155. source = "registry+https://github.com/rust-lang/crates.io-index"
  156. checksum = "c74d84029116787153e02106bf53e66828452a4b325cc8652b788b5967c0a0b6"
  157. dependencies = [
  158. "num-integer",
  159. "num-traits",
  160. "serde",
  161. "time",
  162. ]
  163. [[package]]
  164. name = "cloudabi"
  165. version = "0.1.0"
  166. source = "registry+https://github.com/rust-lang/crates.io-index"
  167. checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
  168. dependencies = [
  169. "bitflags",
  170. ]
  171. [[package]]
  172. name = "core-foundation"
  173. version = "0.7.0"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
  176. dependencies = [
  177. "core-foundation-sys",
  178. "libc",
  179. ]
  180. [[package]]
  181. name = "core-foundation-sys"
  182. version = "0.7.0"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
  185. [[package]]
  186. name = "cpuid-bool"
  187. version = "0.1.2"
  188. source = "registry+https://github.com/rust-lang/crates.io-index"
  189. checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
  190. [[package]]
  191. name = "crossbeam-utils"
  192. version = "0.7.2"
  193. source = "registry+https://github.com/rust-lang/crates.io-index"
  194. checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
  195. dependencies = [
  196. "autocfg",
  197. "cfg-if",
  198. "lazy_static",
  199. ]
  200. [[package]]
  201. name = "crypto-mac"
  202. version = "0.8.0"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
  205. dependencies = [
  206. "generic-array 0.14.3",
  207. "subtle",
  208. ]
  209. [[package]]
  210. name = "digest"
  211. version = "0.8.1"
  212. source = "registry+https://github.com/rust-lang/crates.io-index"
  213. checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
  214. dependencies = [
  215. "generic-array 0.12.3",
  216. ]
  217. [[package]]
  218. name = "digest"
  219. version = "0.9.0"
  220. source = "registry+https://github.com/rust-lang/crates.io-index"
  221. checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
  222. dependencies = [
  223. "generic-array 0.14.3",
  224. ]
  225. [[package]]
  226. name = "doc-comment"
  227. version = "0.3.3"
  228. source = "registry+https://github.com/rust-lang/crates.io-index"
  229. checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
  230. [[package]]
  231. name = "dotenv"
  232. version = "0.14.1"
  233. source = "registry+https://github.com/rust-lang/crates.io-index"
  234. checksum = "4424bad868b0ffe6ae351ee463526ba625bbca817978293bbe6bb7dc1804a175"
  235. dependencies = [
  236. "failure",
  237. "lazy_static",
  238. "regex",
  239. ]
  240. [[package]]
  241. name = "dtoa"
  242. version = "0.4.6"
  243. source = "registry+https://github.com/rust-lang/crates.io-index"
  244. checksum = "134951f4028bdadb9b84baf4232681efbf277da25144b9b0ad65df75946c422b"
  245. [[package]]
  246. name = "encoding_rs"
  247. version = "0.8.23"
  248. source = "registry+https://github.com/rust-lang/crates.io-index"
  249. checksum = "e8ac63f94732332f44fe654443c46f6375d1939684c17b0afb6cb56b0456e171"
  250. dependencies = [
  251. "cfg-if",
  252. ]
  253. [[package]]
  254. name = "env_logger"
  255. version = "0.7.1"
  256. source = "registry+https://github.com/rust-lang/crates.io-index"
  257. checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
  258. dependencies = [
  259. "atty",
  260. "humantime",
  261. "log",
  262. "regex",
  263. "termcolor",
  264. ]
  265. [[package]]
  266. name = "failure"
  267. version = "0.1.8"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
  270. dependencies = [
  271. "backtrace",
  272. "failure_derive",
  273. ]
  274. [[package]]
  275. name = "failure_derive"
  276. version = "0.1.8"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
  279. dependencies = [
  280. "proc-macro2",
  281. "quote",
  282. "syn",
  283. "synstructure",
  284. ]
  285. [[package]]
  286. name = "fake-simd"
  287. version = "0.1.2"
  288. source = "registry+https://github.com/rust-lang/crates.io-index"
  289. checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
  290. [[package]]
  291. name = "fallible-iterator"
  292. version = "0.2.0"
  293. source = "registry+https://github.com/rust-lang/crates.io-index"
  294. checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
  295. [[package]]
  296. name = "fnv"
  297. version = "1.0.7"
  298. source = "registry+https://github.com/rust-lang/crates.io-index"
  299. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  300. [[package]]
  301. name = "foreign-types"
  302. version = "0.3.2"
  303. source = "registry+https://github.com/rust-lang/crates.io-index"
  304. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  305. dependencies = [
  306. "foreign-types-shared",
  307. ]
  308. [[package]]
  309. name = "foreign-types-shared"
  310. version = "0.1.1"
  311. source = "registry+https://github.com/rust-lang/crates.io-index"
  312. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  313. [[package]]
  314. name = "fuchsia-zircon"
  315. version = "0.3.3"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  318. dependencies = [
  319. "bitflags",
  320. "fuchsia-zircon-sys",
  321. ]
  322. [[package]]
  323. name = "fuchsia-zircon-sys"
  324. version = "0.3.3"
  325. source = "registry+https://github.com/rust-lang/crates.io-index"
  326. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  327. [[package]]
  328. name = "futures"
  329. version = "0.3.5"
  330. source = "registry+https://github.com/rust-lang/crates.io-index"
  331. checksum = "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613"
  332. dependencies = [
  333. "futures-channel",
  334. "futures-core",
  335. "futures-executor",
  336. "futures-io",
  337. "futures-sink",
  338. "futures-task",
  339. "futures-util",
  340. ]
  341. [[package]]
  342. name = "futures-channel"
  343. version = "0.3.5"
  344. source = "registry+https://github.com/rust-lang/crates.io-index"
  345. checksum = "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5"
  346. dependencies = [
  347. "futures-core",
  348. "futures-sink",
  349. ]
  350. [[package]]
  351. name = "futures-core"
  352. version = "0.3.5"
  353. source = "registry+https://github.com/rust-lang/crates.io-index"
  354. checksum = "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399"
  355. [[package]]
  356. name = "futures-executor"
  357. version = "0.3.5"
  358. source = "registry+https://github.com/rust-lang/crates.io-index"
  359. checksum = "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314"
  360. dependencies = [
  361. "futures-core",
  362. "futures-task",
  363. "futures-util",
  364. ]
  365. [[package]]
  366. name = "futures-io"
  367. version = "0.3.5"
  368. source = "registry+https://github.com/rust-lang/crates.io-index"
  369. checksum = "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789"
  370. [[package]]
  371. name = "futures-macro"
  372. version = "0.3.5"
  373. source = "registry+https://github.com/rust-lang/crates.io-index"
  374. checksum = "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39"
  375. dependencies = [
  376. "proc-macro-hack",
  377. "proc-macro2",
  378. "quote",
  379. "syn",
  380. ]
  381. [[package]]
  382. name = "futures-sink"
  383. version = "0.3.5"
  384. source = "registry+https://github.com/rust-lang/crates.io-index"
  385. checksum = "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc"
  386. [[package]]
  387. name = "futures-task"
  388. version = "0.3.5"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626"
  391. dependencies = [
  392. "once_cell",
  393. ]
  394. [[package]]
  395. name = "futures-util"
  396. version = "0.3.5"
  397. source = "registry+https://github.com/rust-lang/crates.io-index"
  398. checksum = "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6"
  399. dependencies = [
  400. "futures-channel",
  401. "futures-core",
  402. "futures-io",
  403. "futures-macro",
  404. "futures-sink",
  405. "futures-task",
  406. "memchr",
  407. "pin-project",
  408. "pin-utils",
  409. "proc-macro-hack",
  410. "proc-macro-nested",
  411. "slab",
  412. ]
  413. [[package]]
  414. name = "generic-array"
  415. version = "0.12.3"
  416. source = "registry+https://github.com/rust-lang/crates.io-index"
  417. checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
  418. dependencies = [
  419. "typenum",
  420. ]
  421. [[package]]
  422. name = "generic-array"
  423. version = "0.14.3"
  424. source = "registry+https://github.com/rust-lang/crates.io-index"
  425. checksum = "60fb4bb6bba52f78a471264d9a3b7d026cc0af47b22cd2cffbc0b787ca003e63"
  426. dependencies = [
  427. "typenum",
  428. "version_check",
  429. ]
  430. [[package]]
  431. name = "getopts"
  432. version = "0.2.21"
  433. source = "registry+https://github.com/rust-lang/crates.io-index"
  434. checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
  435. dependencies = [
  436. "unicode-width",
  437. ]
  438. [[package]]
  439. name = "getrandom"
  440. version = "0.1.14"
  441. source = "registry+https://github.com/rust-lang/crates.io-index"
  442. checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
  443. dependencies = [
  444. "cfg-if",
  445. "libc",
  446. "wasi",
  447. ]
  448. [[package]]
  449. name = "gimli"
  450. version = "0.22.0"
  451. source = "registry+https://github.com/rust-lang/crates.io-index"
  452. checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724"
  453. [[package]]
  454. name = "glob"
  455. version = "0.3.0"
  456. source = "registry+https://github.com/rust-lang/crates.io-index"
  457. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  458. [[package]]
  459. name = "globset"
  460. version = "0.4.5"
  461. source = "registry+https://github.com/rust-lang/crates.io-index"
  462. checksum = "7ad1da430bd7281dde2576f44c84cc3f0f7b475e7202cd503042dff01a8c8120"
  463. dependencies = [
  464. "aho-corasick",
  465. "bstr",
  466. "fnv",
  467. "log",
  468. "regex",
  469. ]
  470. [[package]]
  471. name = "globwalk"
  472. version = "0.8.0"
  473. source = "registry+https://github.com/rust-lang/crates.io-index"
  474. checksum = "178270263374052c40502e9f607134947de75302c1348d1a0e31db67c1691446"
  475. dependencies = [
  476. "bitflags",
  477. "ignore",
  478. "walkdir",
  479. ]
  480. [[package]]
  481. name = "h2"
  482. version = "0.2.6"
  483. source = "registry+https://github.com/rust-lang/crates.io-index"
  484. checksum = "993f9e0baeed60001cf565546b0d3dbe6a6ad23f2bd31644a133c641eccf6d53"
  485. dependencies = [
  486. "bytes",
  487. "fnv",
  488. "futures-core",
  489. "futures-sink",
  490. "futures-util",
  491. "http",
  492. "indexmap",
  493. "slab",
  494. "tokio",
  495. "tokio-util",
  496. "tracing",
  497. ]
  498. [[package]]
  499. name = "hashbrown"
  500. version = "0.8.1"
  501. source = "registry+https://github.com/rust-lang/crates.io-index"
  502. checksum = "34f595585f103464d8d2f6e9864682d74c1601fed5e07d62b1c9058dba8246fb"
  503. dependencies = [
  504. "autocfg",
  505. ]
  506. [[package]]
  507. name = "hermit-abi"
  508. version = "0.1.15"
  509. source = "registry+https://github.com/rust-lang/crates.io-index"
  510. checksum = "3deed196b6e7f9e44a2ae8d94225d80302d81208b1bb673fd21fe634645c85a9"
  511. dependencies = [
  512. "libc",
  513. ]
  514. [[package]]
  515. name = "hex"
  516. version = "0.4.2"
  517. source = "registry+https://github.com/rust-lang/crates.io-index"
  518. checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
  519. [[package]]
  520. name = "hmac"
  521. version = "0.8.1"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
  524. dependencies = [
  525. "crypto-mac",
  526. "digest 0.9.0",
  527. ]
  528. [[package]]
  529. name = "http"
  530. version = "0.2.1"
  531. source = "registry+https://github.com/rust-lang/crates.io-index"
  532. checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
  533. dependencies = [
  534. "bytes",
  535. "fnv",
  536. "itoa",
  537. ]
  538. [[package]]
  539. name = "http-body"
  540. version = "0.3.1"
  541. source = "registry+https://github.com/rust-lang/crates.io-index"
  542. checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b"
  543. dependencies = [
  544. "bytes",
  545. "http",
  546. ]
  547. [[package]]
  548. name = "httparse"
  549. version = "1.3.4"
  550. source = "registry+https://github.com/rust-lang/crates.io-index"
  551. checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
  552. [[package]]
  553. name = "humantime"
  554. version = "1.3.0"
  555. source = "registry+https://github.com/rust-lang/crates.io-index"
  556. checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
  557. dependencies = [
  558. "quick-error",
  559. ]
  560. [[package]]
  561. name = "hyper"
  562. version = "0.13.7"
  563. source = "registry+https://github.com/rust-lang/crates.io-index"
  564. checksum = "3e68a8dd9716185d9e64ea473ea6ef63529252e3e27623295a0378a19665d5eb"
  565. dependencies = [
  566. "bytes",
  567. "futures-channel",
  568. "futures-core",
  569. "futures-util",
  570. "h2",
  571. "http",
  572. "http-body",
  573. "httparse",
  574. "itoa",
  575. "pin-project",
  576. "socket2",
  577. "time",
  578. "tokio",
  579. "tower-service",
  580. "tracing",
  581. "want",
  582. ]
  583. [[package]]
  584. name = "hyper-tls"
  585. version = "0.4.3"
  586. source = "registry+https://github.com/rust-lang/crates.io-index"
  587. checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed"
  588. dependencies = [
  589. "bytes",
  590. "hyper",
  591. "native-tls",
  592. "tokio",
  593. "tokio-tls",
  594. ]
  595. [[package]]
  596. name = "hyperx"
  597. version = "1.0.0"
  598. source = "registry+https://github.com/rust-lang/crates.io-index"
  599. checksum = "81d7ed6ec7d25c4de28b999a5693f14609a8b756137b1b4cb4927d119f59ef25"
  600. dependencies = [
  601. "base64 0.11.0",
  602. "bytes",
  603. "http",
  604. "httparse",
  605. "language-tags",
  606. "log",
  607. "mime",
  608. "percent-encoding",
  609. "time",
  610. "unicase",
  611. ]
  612. [[package]]
  613. name = "idna"
  614. version = "0.2.0"
  615. source = "registry+https://github.com/rust-lang/crates.io-index"
  616. checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
  617. dependencies = [
  618. "matches",
  619. "unicode-bidi",
  620. "unicode-normalization",
  621. ]
  622. [[package]]
  623. name = "ignore"
  624. version = "0.4.16"
  625. source = "registry+https://github.com/rust-lang/crates.io-index"
  626. checksum = "22dcbf2a4a289528dbef21686354904e1c694ac642610a9bff9e7df730d9ec72"
  627. dependencies = [
  628. "crossbeam-utils",
  629. "globset",
  630. "lazy_static",
  631. "log",
  632. "memchr",
  633. "regex",
  634. "same-file",
  635. "thread_local",
  636. "walkdir",
  637. "winapi-util",
  638. ]
  639. [[package]]
  640. name = "indexmap"
  641. version = "1.5.0"
  642. source = "registry+https://github.com/rust-lang/crates.io-index"
  643. checksum = "5b88cd59ee5f71fea89a62248fc8f387d44400cefe05ef548466d61ced9029a7"
  644. dependencies = [
  645. "autocfg",
  646. "hashbrown",
  647. "serde",
  648. ]
  649. [[package]]
  650. name = "instant"
  651. version = "0.1.6"
  652. source = "registry+https://github.com/rust-lang/crates.io-index"
  653. checksum = "5b141fdc7836c525d4d594027d318c84161ca17aaf8113ab1f81ab93ae897485"
  654. [[package]]
  655. name = "iovec"
  656. version = "0.1.4"
  657. source = "registry+https://github.com/rust-lang/crates.io-index"
  658. checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  659. dependencies = [
  660. "libc",
  661. ]
  662. [[package]]
  663. name = "ipnet"
  664. version = "2.3.0"
  665. source = "registry+https://github.com/rust-lang/crates.io-index"
  666. checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
  667. [[package]]
  668. name = "itoa"
  669. version = "0.4.6"
  670. source = "registry+https://github.com/rust-lang/crates.io-index"
  671. checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
  672. [[package]]
  673. name = "js-sys"
  674. version = "0.3.42"
  675. source = "registry+https://github.com/rust-lang/crates.io-index"
  676. checksum = "52732a3d3ad72c58ad2dc70624f9c17b46ecd0943b9a4f1ee37c4c18c5d983e2"
  677. dependencies = [
  678. "wasm-bindgen",
  679. ]
  680. [[package]]
  681. name = "kernel32-sys"
  682. version = "0.2.2"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  685. dependencies = [
  686. "winapi 0.2.8",
  687. "winapi-build",
  688. ]
  689. [[package]]
  690. name = "language-tags"
  691. version = "0.2.2"
  692. source = "registry+https://github.com/rust-lang/crates.io-index"
  693. checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
  694. [[package]]
  695. name = "lazy_static"
  696. version = "1.4.0"
  697. source = "registry+https://github.com/rust-lang/crates.io-index"
  698. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  699. [[package]]
  700. name = "libc"
  701. version = "0.2.73"
  702. source = "registry+https://github.com/rust-lang/crates.io-index"
  703. checksum = "bd7d4bd64732af4bf3a67f367c27df8520ad7e230c5817b8ff485864d80242b9"
  704. [[package]]
  705. name = "lock_api"
  706. version = "0.4.1"
  707. source = "registry+https://github.com/rust-lang/crates.io-index"
  708. checksum = "28247cc5a5be2f05fbcd76dd0cf2c7d3b5400cb978a28042abcd4fa0b3f8261c"
  709. dependencies = [
  710. "scopeguard",
  711. ]
  712. [[package]]
  713. name = "log"
  714. version = "0.4.11"
  715. source = "registry+https://github.com/rust-lang/crates.io-index"
  716. checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
  717. dependencies = [
  718. "cfg-if",
  719. ]
  720. [[package]]
  721. name = "maplit"
  722. version = "1.0.2"
  723. source = "registry+https://github.com/rust-lang/crates.io-index"
  724. checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
  725. [[package]]
  726. name = "matches"
  727. version = "0.1.8"
  728. source = "registry+https://github.com/rust-lang/crates.io-index"
  729. checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  730. [[package]]
  731. name = "md5"
  732. version = "0.7.0"
  733. source = "registry+https://github.com/rust-lang/crates.io-index"
  734. checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
  735. [[package]]
  736. name = "memchr"
  737. version = "2.3.3"
  738. source = "registry+https://github.com/rust-lang/crates.io-index"
  739. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  740. [[package]]
  741. name = "mime"
  742. version = "0.3.16"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  745. [[package]]
  746. name = "mime_guess"
  747. version = "2.0.3"
  748. source = "registry+https://github.com/rust-lang/crates.io-index"
  749. checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
  750. dependencies = [
  751. "mime",
  752. "unicase",
  753. ]
  754. [[package]]
  755. name = "miniz_oxide"
  756. version = "0.4.0"
  757. source = "registry+https://github.com/rust-lang/crates.io-index"
  758. checksum = "be0f75932c1f6cfae3c04000e40114adf955636e19040f9c0a2c380702aa1c7f"
  759. dependencies = [
  760. "adler",
  761. ]
  762. [[package]]
  763. name = "mio"
  764. version = "0.6.22"
  765. source = "registry+https://github.com/rust-lang/crates.io-index"
  766. checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
  767. dependencies = [
  768. "cfg-if",
  769. "fuchsia-zircon",
  770. "fuchsia-zircon-sys",
  771. "iovec",
  772. "kernel32-sys",
  773. "libc",
  774. "log",
  775. "miow",
  776. "net2",
  777. "slab",
  778. "winapi 0.2.8",
  779. ]
  780. [[package]]
  781. name = "mio-uds"
  782. version = "0.6.8"
  783. source = "registry+https://github.com/rust-lang/crates.io-index"
  784. checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
  785. dependencies = [
  786. "iovec",
  787. "libc",
  788. "mio",
  789. ]
  790. [[package]]
  791. name = "miow"
  792. version = "0.2.1"
  793. source = "registry+https://github.com/rust-lang/crates.io-index"
  794. checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
  795. dependencies = [
  796. "kernel32-sys",
  797. "net2",
  798. "winapi 0.2.8",
  799. "ws2_32-sys",
  800. ]
  801. [[package]]
  802. name = "native-tls"
  803. version = "0.2.4"
  804. source = "registry+https://github.com/rust-lang/crates.io-index"
  805. checksum = "2b0d88c06fe90d5ee94048ba40409ef1d9315d86f6f38c2efdaad4fb50c58b2d"
  806. dependencies = [
  807. "lazy_static",
  808. "libc",
  809. "log",
  810. "openssl",
  811. "openssl-probe",
  812. "openssl-sys",
  813. "schannel",
  814. "security-framework",
  815. "security-framework-sys",
  816. "tempfile",
  817. ]
  818. [[package]]
  819. name = "net2"
  820. version = "0.2.34"
  821. source = "registry+https://github.com/rust-lang/crates.io-index"
  822. checksum = "2ba7c918ac76704fb42afcbbb43891e72731f3dcca3bef2a19786297baf14af7"
  823. dependencies = [
  824. "cfg-if",
  825. "libc",
  826. "winapi 0.3.9",
  827. ]
  828. [[package]]
  829. name = "num-integer"
  830. version = "0.1.43"
  831. source = "registry+https://github.com/rust-lang/crates.io-index"
  832. checksum = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b"
  833. dependencies = [
  834. "autocfg",
  835. "num-traits",
  836. ]
  837. [[package]]
  838. name = "num-traits"
  839. version = "0.2.12"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611"
  842. dependencies = [
  843. "autocfg",
  844. ]
  845. [[package]]
  846. name = "num_cpus"
  847. version = "1.13.0"
  848. source = "registry+https://github.com/rust-lang/crates.io-index"
  849. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  850. dependencies = [
  851. "hermit-abi",
  852. "libc",
  853. ]
  854. [[package]]
  855. name = "object"
  856. version = "0.20.0"
  857. source = "registry+https://github.com/rust-lang/crates.io-index"
  858. checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5"
  859. [[package]]
  860. name = "octocrab"
  861. version = "0.3.2"
  862. source = "registry+https://github.com/rust-lang/crates.io-index"
  863. checksum = "d93b930d080feb2b5c55a44f3660f73e65b811bea0ee302a7b738560791f5093"
  864. dependencies = [
  865. "arc-swap",
  866. "async-trait",
  867. "base64 0.12.3",
  868. "bytes",
  869. "chrono",
  870. "hyperx",
  871. "once_cell",
  872. "reqwest",
  873. "serde",
  874. "serde_json",
  875. "serde_path_to_error",
  876. "snafu",
  877. "url",
  878. ]
  879. [[package]]
  880. name = "once_cell"
  881. version = "1.4.0"
  882. source = "registry+https://github.com/rust-lang/crates.io-index"
  883. checksum = "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d"
  884. [[package]]
  885. name = "opaque-debug"
  886. version = "0.2.3"
  887. source = "registry+https://github.com/rust-lang/crates.io-index"
  888. checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
  889. [[package]]
  890. name = "opaque-debug"
  891. version = "0.3.0"
  892. source = "registry+https://github.com/rust-lang/crates.io-index"
  893. checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
  894. [[package]]
  895. name = "openssl"
  896. version = "0.10.30"
  897. source = "registry+https://github.com/rust-lang/crates.io-index"
  898. checksum = "8d575eff3665419f9b83678ff2815858ad9d11567e082f5ac1814baba4e2bcb4"
  899. dependencies = [
  900. "bitflags",
  901. "cfg-if",
  902. "foreign-types",
  903. "lazy_static",
  904. "libc",
  905. "openssl-sys",
  906. ]
  907. [[package]]
  908. name = "openssl-probe"
  909. version = "0.1.2"
  910. source = "registry+https://github.com/rust-lang/crates.io-index"
  911. checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
  912. [[package]]
  913. name = "openssl-sys"
  914. version = "0.9.58"
  915. source = "registry+https://github.com/rust-lang/crates.io-index"
  916. checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
  917. dependencies = [
  918. "autocfg",
  919. "cc",
  920. "libc",
  921. "pkg-config",
  922. "vcpkg",
  923. ]
  924. [[package]]
  925. name = "parking_lot"
  926. version = "0.11.0"
  927. source = "registry+https://github.com/rust-lang/crates.io-index"
  928. checksum = "a4893845fa2ca272e647da5d0e46660a314ead9c2fdd9a883aabc32e481a8733"
  929. dependencies = [
  930. "instant",
  931. "lock_api",
  932. "parking_lot_core",
  933. ]
  934. [[package]]
  935. name = "parking_lot_core"
  936. version = "0.8.0"
  937. source = "registry+https://github.com/rust-lang/crates.io-index"
  938. checksum = "c361aa727dd08437f2f1447be8b59a33b0edd15e0fcee698f935613d9efbca9b"
  939. dependencies = [
  940. "cfg-if",
  941. "cloudabi",
  942. "instant",
  943. "libc",
  944. "redox_syscall",
  945. "smallvec",
  946. "winapi 0.3.9",
  947. ]
  948. [[package]]
  949. name = "parser"
  950. version = "0.1.0"
  951. dependencies = [
  952. "log",
  953. "pulldown-cmark",
  954. ]
  955. [[package]]
  956. name = "percent-encoding"
  957. version = "2.1.0"
  958. source = "registry+https://github.com/rust-lang/crates.io-index"
  959. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  960. [[package]]
  961. name = "pest"
  962. version = "2.1.3"
  963. source = "registry+https://github.com/rust-lang/crates.io-index"
  964. checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
  965. dependencies = [
  966. "ucd-trie",
  967. ]
  968. [[package]]
  969. name = "pest_derive"
  970. version = "2.1.0"
  971. source = "registry+https://github.com/rust-lang/crates.io-index"
  972. checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
  973. dependencies = [
  974. "pest",
  975. "pest_generator",
  976. ]
  977. [[package]]
  978. name = "pest_generator"
  979. version = "2.1.3"
  980. source = "registry+https://github.com/rust-lang/crates.io-index"
  981. checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
  982. dependencies = [
  983. "pest",
  984. "pest_meta",
  985. "proc-macro2",
  986. "quote",
  987. "syn",
  988. ]
  989. [[package]]
  990. name = "pest_meta"
  991. version = "2.1.3"
  992. source = "registry+https://github.com/rust-lang/crates.io-index"
  993. checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
  994. dependencies = [
  995. "maplit",
  996. "pest",
  997. "sha-1",
  998. ]
  999. [[package]]
  1000. name = "phf"
  1001. version = "0.8.0"
  1002. source = "registry+https://github.com/rust-lang/crates.io-index"
  1003. checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
  1004. dependencies = [
  1005. "phf_shared",
  1006. ]
  1007. [[package]]
  1008. name = "phf_shared"
  1009. version = "0.8.0"
  1010. source = "registry+https://github.com/rust-lang/crates.io-index"
  1011. checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
  1012. dependencies = [
  1013. "siphasher",
  1014. ]
  1015. [[package]]
  1016. name = "pin-project"
  1017. version = "0.4.22"
  1018. source = "registry+https://github.com/rust-lang/crates.io-index"
  1019. checksum = "12e3a6cdbfe94a5e4572812a0201f8c0ed98c1c452c7b8563ce2276988ef9c17"
  1020. dependencies = [
  1021. "pin-project-internal",
  1022. ]
  1023. [[package]]
  1024. name = "pin-project-internal"
  1025. version = "0.4.22"
  1026. source = "registry+https://github.com/rust-lang/crates.io-index"
  1027. checksum = "6a0ffd45cf79d88737d7cc85bfd5d2894bee1139b356e616fe85dc389c61aaf7"
  1028. dependencies = [
  1029. "proc-macro2",
  1030. "quote",
  1031. "syn",
  1032. ]
  1033. [[package]]
  1034. name = "pin-project-lite"
  1035. version = "0.1.7"
  1036. source = "registry+https://github.com/rust-lang/crates.io-index"
  1037. checksum = "282adbf10f2698a7a77f8e983a74b2d18176c19a7fd32a45446139ae7b02b715"
  1038. [[package]]
  1039. name = "pin-utils"
  1040. version = "0.1.0"
  1041. source = "registry+https://github.com/rust-lang/crates.io-index"
  1042. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  1043. [[package]]
  1044. name = "pkg-config"
  1045. version = "0.3.18"
  1046. source = "registry+https://github.com/rust-lang/crates.io-index"
  1047. checksum = "d36492546b6af1463394d46f0c834346f31548646f6ba10849802c9c9a27ac33"
  1048. [[package]]
  1049. name = "postgres-native-tls"
  1050. version = "0.3.0"
  1051. source = "registry+https://github.com/rust-lang/crates.io-index"
  1052. checksum = "616bfdeeb542b2b0d444391dbcdd91e9a800bc7f35950c9741fe24b07e958900"
  1053. dependencies = [
  1054. "bytes",
  1055. "futures",
  1056. "native-tls",
  1057. "tokio",
  1058. "tokio-postgres",
  1059. "tokio-tls",
  1060. ]
  1061. [[package]]
  1062. name = "postgres-protocol"
  1063. version = "0.5.2"
  1064. source = "registry+https://github.com/rust-lang/crates.io-index"
  1065. checksum = "81c5b25980f9a9b5ad36e9cdc855530575396d8a57f67e14691a2440ed0d9a90"
  1066. dependencies = [
  1067. "base64 0.12.3",
  1068. "byteorder",
  1069. "bytes",
  1070. "fallible-iterator",
  1071. "hmac",
  1072. "md5",
  1073. "memchr",
  1074. "rand",
  1075. "sha2",
  1076. "stringprep",
  1077. ]
  1078. [[package]]
  1079. name = "postgres-types"
  1080. version = "0.1.2"
  1081. source = "registry+https://github.com/rust-lang/crates.io-index"
  1082. checksum = "3d14b0a4f433b0e0b565bb0fbc0ac9fc3d79ca338ba265ad0e7eef0f3bcc5e94"
  1083. dependencies = [
  1084. "bytes",
  1085. "chrono",
  1086. "fallible-iterator",
  1087. "postgres-protocol",
  1088. ]
  1089. [[package]]
  1090. name = "ppv-lite86"
  1091. version = "0.2.8"
  1092. source = "registry+https://github.com/rust-lang/crates.io-index"
  1093. checksum = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea"
  1094. [[package]]
  1095. name = "proc-macro-hack"
  1096. version = "0.5.18"
  1097. source = "registry+https://github.com/rust-lang/crates.io-index"
  1098. checksum = "99c605b9a0adc77b7211c6b1f722dcb613d68d66859a44f3d485a6da332b0598"
  1099. [[package]]
  1100. name = "proc-macro-nested"
  1101. version = "0.1.6"
  1102. source = "registry+https://github.com/rust-lang/crates.io-index"
  1103. checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
  1104. [[package]]
  1105. name = "proc-macro2"
  1106. version = "1.0.19"
  1107. source = "registry+https://github.com/rust-lang/crates.io-index"
  1108. checksum = "04f5f085b5d71e2188cb8271e5da0161ad52c3f227a661a3c135fdf28e258b12"
  1109. dependencies = [
  1110. "unicode-xid",
  1111. ]
  1112. [[package]]
  1113. name = "pulldown-cmark"
  1114. version = "0.6.1"
  1115. source = "registry+https://github.com/rust-lang/crates.io-index"
  1116. checksum = "1c205cc82214f3594e2d50686730314f817c67ffa80fe800cf0db78c3c2b9d9e"
  1117. dependencies = [
  1118. "bitflags",
  1119. "getopts",
  1120. "memchr",
  1121. "unicase",
  1122. ]
  1123. [[package]]
  1124. name = "quick-error"
  1125. version = "1.2.3"
  1126. source = "registry+https://github.com/rust-lang/crates.io-index"
  1127. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  1128. [[package]]
  1129. name = "quote"
  1130. version = "1.0.7"
  1131. source = "registry+https://github.com/rust-lang/crates.io-index"
  1132. checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
  1133. dependencies = [
  1134. "proc-macro2",
  1135. ]
  1136. [[package]]
  1137. name = "rand"
  1138. version = "0.7.3"
  1139. source = "registry+https://github.com/rust-lang/crates.io-index"
  1140. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  1141. dependencies = [
  1142. "getrandom",
  1143. "libc",
  1144. "rand_chacha",
  1145. "rand_core",
  1146. "rand_hc",
  1147. ]
  1148. [[package]]
  1149. name = "rand_chacha"
  1150. version = "0.2.2"
  1151. source = "registry+https://github.com/rust-lang/crates.io-index"
  1152. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  1153. dependencies = [
  1154. "ppv-lite86",
  1155. "rand_core",
  1156. ]
  1157. [[package]]
  1158. name = "rand_core"
  1159. version = "0.5.1"
  1160. source = "registry+https://github.com/rust-lang/crates.io-index"
  1161. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  1162. dependencies = [
  1163. "getrandom",
  1164. ]
  1165. [[package]]
  1166. name = "rand_hc"
  1167. version = "0.2.0"
  1168. source = "registry+https://github.com/rust-lang/crates.io-index"
  1169. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  1170. dependencies = [
  1171. "rand_core",
  1172. ]
  1173. [[package]]
  1174. name = "redox_syscall"
  1175. version = "0.1.57"
  1176. source = "registry+https://github.com/rust-lang/crates.io-index"
  1177. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  1178. [[package]]
  1179. name = "regex"
  1180. version = "1.3.9"
  1181. source = "registry+https://github.com/rust-lang/crates.io-index"
  1182. checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6"
  1183. dependencies = [
  1184. "aho-corasick",
  1185. "memchr",
  1186. "regex-syntax",
  1187. "thread_local",
  1188. ]
  1189. [[package]]
  1190. name = "regex-syntax"
  1191. version = "0.6.18"
  1192. source = "registry+https://github.com/rust-lang/crates.io-index"
  1193. checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8"
  1194. [[package]]
  1195. name = "remove_dir_all"
  1196. version = "0.5.3"
  1197. source = "registry+https://github.com/rust-lang/crates.io-index"
  1198. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  1199. dependencies = [
  1200. "winapi 0.3.9",
  1201. ]
  1202. [[package]]
  1203. name = "reqwest"
  1204. version = "0.10.7"
  1205. source = "registry+https://github.com/rust-lang/crates.io-index"
  1206. checksum = "12427a5577082c24419c9c417db35cfeb65962efc7675bb6b0d5f1f9d315bfe6"
  1207. dependencies = [
  1208. "base64 0.12.3",
  1209. "bytes",
  1210. "encoding_rs",
  1211. "futures-core",
  1212. "futures-util",
  1213. "http",
  1214. "http-body",
  1215. "hyper",
  1216. "hyper-tls",
  1217. "ipnet",
  1218. "js-sys",
  1219. "lazy_static",
  1220. "log",
  1221. "mime",
  1222. "mime_guess",
  1223. "native-tls",
  1224. "percent-encoding",
  1225. "pin-project-lite",
  1226. "serde",
  1227. "serde_json",
  1228. "serde_urlencoded",
  1229. "tokio",
  1230. "tokio-tls",
  1231. "url",
  1232. "wasm-bindgen",
  1233. "wasm-bindgen-futures",
  1234. "web-sys",
  1235. "winreg",
  1236. ]
  1237. [[package]]
  1238. name = "rust_team_data"
  1239. version = "1.0.0"
  1240. source = "git+https://github.com/rust-lang/team#b9d9c5660a02e7c3a780026764536f2b76bd4bd1"
  1241. dependencies = [
  1242. "indexmap",
  1243. "serde",
  1244. ]
  1245. [[package]]
  1246. name = "rustc-demangle"
  1247. version = "0.1.16"
  1248. source = "registry+https://github.com/rust-lang/crates.io-index"
  1249. checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
  1250. [[package]]
  1251. name = "ryu"
  1252. version = "1.0.5"
  1253. source = "registry+https://github.com/rust-lang/crates.io-index"
  1254. checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  1255. [[package]]
  1256. name = "same-file"
  1257. version = "1.0.6"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  1260. dependencies = [
  1261. "winapi-util",
  1262. ]
  1263. [[package]]
  1264. name = "schannel"
  1265. version = "0.1.19"
  1266. source = "registry+https://github.com/rust-lang/crates.io-index"
  1267. checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
  1268. dependencies = [
  1269. "lazy_static",
  1270. "winapi 0.3.9",
  1271. ]
  1272. [[package]]
  1273. name = "scopeguard"
  1274. version = "1.1.0"
  1275. source = "registry+https://github.com/rust-lang/crates.io-index"
  1276. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  1277. [[package]]
  1278. name = "security-framework"
  1279. version = "0.4.4"
  1280. source = "registry+https://github.com/rust-lang/crates.io-index"
  1281. checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535"
  1282. dependencies = [
  1283. "bitflags",
  1284. "core-foundation",
  1285. "core-foundation-sys",
  1286. "libc",
  1287. "security-framework-sys",
  1288. ]
  1289. [[package]]
  1290. name = "security-framework-sys"
  1291. version = "0.4.3"
  1292. source = "registry+https://github.com/rust-lang/crates.io-index"
  1293. checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405"
  1294. dependencies = [
  1295. "core-foundation-sys",
  1296. "libc",
  1297. ]
  1298. [[package]]
  1299. name = "serde"
  1300. version = "1.0.114"
  1301. source = "registry+https://github.com/rust-lang/crates.io-index"
  1302. checksum = "5317f7588f0a5078ee60ef675ef96735a1442132dc645eb1d12c018620ed8cd3"
  1303. dependencies = [
  1304. "serde_derive",
  1305. ]
  1306. [[package]]
  1307. name = "serde_derive"
  1308. version = "1.0.114"
  1309. source = "registry+https://github.com/rust-lang/crates.io-index"
  1310. checksum = "2a0be94b04690fbaed37cddffc5c134bf537c8e3329d53e982fe04c374978f8e"
  1311. dependencies = [
  1312. "proc-macro2",
  1313. "quote",
  1314. "syn",
  1315. ]
  1316. [[package]]
  1317. name = "serde_json"
  1318. version = "1.0.56"
  1319. source = "registry+https://github.com/rust-lang/crates.io-index"
  1320. checksum = "3433e879a558dde8b5e8feb2a04899cf34fdde1fafb894687e52105fc1162ac3"
  1321. dependencies = [
  1322. "itoa",
  1323. "ryu",
  1324. "serde",
  1325. ]
  1326. [[package]]
  1327. name = "serde_path_to_error"
  1328. version = "0.1.3"
  1329. source = "registry+https://github.com/rust-lang/crates.io-index"
  1330. checksum = "913be57cc4ce01e57709c49d3f9a73e0019ae0ba26c4063d7bc15351d68f3593"
  1331. dependencies = [
  1332. "serde",
  1333. ]
  1334. [[package]]
  1335. name = "serde_urlencoded"
  1336. version = "0.6.1"
  1337. source = "registry+https://github.com/rust-lang/crates.io-index"
  1338. checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
  1339. dependencies = [
  1340. "dtoa",
  1341. "itoa",
  1342. "serde",
  1343. "url",
  1344. ]
  1345. [[package]]
  1346. name = "sha-1"
  1347. version = "0.8.2"
  1348. source = "registry+https://github.com/rust-lang/crates.io-index"
  1349. checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
  1350. dependencies = [
  1351. "block-buffer 0.7.3",
  1352. "digest 0.8.1",
  1353. "fake-simd",
  1354. "opaque-debug 0.2.3",
  1355. ]
  1356. [[package]]
  1357. name = "sha2"
  1358. version = "0.9.1"
  1359. source = "registry+https://github.com/rust-lang/crates.io-index"
  1360. checksum = "2933378ddfeda7ea26f48c555bdad8bb446bf8a3d17832dc83e380d444cfb8c1"
  1361. dependencies = [
  1362. "block-buffer 0.9.0",
  1363. "cfg-if",
  1364. "cpuid-bool",
  1365. "digest 0.9.0",
  1366. "opaque-debug 0.3.0",
  1367. ]
  1368. [[package]]
  1369. name = "siphasher"
  1370. version = "0.3.3"
  1371. source = "registry+https://github.com/rust-lang/crates.io-index"
  1372. checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7"
  1373. [[package]]
  1374. name = "slab"
  1375. version = "0.4.2"
  1376. source = "registry+https://github.com/rust-lang/crates.io-index"
  1377. checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  1378. [[package]]
  1379. name = "smallvec"
  1380. version = "1.4.1"
  1381. source = "registry+https://github.com/rust-lang/crates.io-index"
  1382. checksum = "3757cb9d89161a2f24e1cf78efa0c1fcff485d18e3f55e0aa3480824ddaa0f3f"
  1383. [[package]]
  1384. name = "snafu"
  1385. version = "0.6.8"
  1386. source = "registry+https://github.com/rust-lang/crates.io-index"
  1387. checksum = "c7f5aed652511f5c9123cf2afbe9c244c29db6effa2abb05c866e965c82405ce"
  1388. dependencies = [
  1389. "backtrace",
  1390. "doc-comment",
  1391. "snafu-derive",
  1392. ]
  1393. [[package]]
  1394. name = "snafu-derive"
  1395. version = "0.6.8"
  1396. source = "registry+https://github.com/rust-lang/crates.io-index"
  1397. checksum = "ebf8f7d5720104a9df0f7076a8682024e958bba0fe9848767bb44f251f3648e9"
  1398. dependencies = [
  1399. "proc-macro2",
  1400. "quote",
  1401. "syn",
  1402. ]
  1403. [[package]]
  1404. name = "socket2"
  1405. version = "0.3.12"
  1406. source = "registry+https://github.com/rust-lang/crates.io-index"
  1407. checksum = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
  1408. dependencies = [
  1409. "cfg-if",
  1410. "libc",
  1411. "redox_syscall",
  1412. "winapi 0.3.9",
  1413. ]
  1414. [[package]]
  1415. name = "stringprep"
  1416. version = "0.1.2"
  1417. source = "registry+https://github.com/rust-lang/crates.io-index"
  1418. checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
  1419. dependencies = [
  1420. "unicode-bidi",
  1421. "unicode-normalization",
  1422. ]
  1423. [[package]]
  1424. name = "subtle"
  1425. version = "2.2.3"
  1426. source = "registry+https://github.com/rust-lang/crates.io-index"
  1427. checksum = "502d53007c02d7605a05df1c1a73ee436952781653da5d0bf57ad608f66932c1"
  1428. [[package]]
  1429. name = "syn"
  1430. version = "1.0.35"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "fb7f4c519df8c117855e19dd8cc851e89eb746fe7a73f0157e0d95fdec5369b0"
  1433. dependencies = [
  1434. "proc-macro2",
  1435. "quote",
  1436. "unicode-xid",
  1437. ]
  1438. [[package]]
  1439. name = "synstructure"
  1440. version = "0.12.4"
  1441. source = "registry+https://github.com/rust-lang/crates.io-index"
  1442. checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
  1443. dependencies = [
  1444. "proc-macro2",
  1445. "quote",
  1446. "syn",
  1447. "unicode-xid",
  1448. ]
  1449. [[package]]
  1450. name = "tempfile"
  1451. version = "3.1.0"
  1452. source = "registry+https://github.com/rust-lang/crates.io-index"
  1453. checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
  1454. dependencies = [
  1455. "cfg-if",
  1456. "libc",
  1457. "rand",
  1458. "redox_syscall",
  1459. "remove_dir_all",
  1460. "winapi 0.3.9",
  1461. ]
  1462. [[package]]
  1463. name = "tera"
  1464. version = "1.4.0"
  1465. source = "registry+https://github.com/rust-lang/crates.io-index"
  1466. checksum = "e9598067511caa7edb41886c4a29efe6d0564926837bde7dffa4a130ea6cc975"
  1467. dependencies = [
  1468. "globwalk",
  1469. "lazy_static",
  1470. "pest",
  1471. "pest_derive",
  1472. "regex",
  1473. "serde",
  1474. "serde_json",
  1475. ]
  1476. [[package]]
  1477. name = "termcolor"
  1478. version = "1.1.0"
  1479. source = "registry+https://github.com/rust-lang/crates.io-index"
  1480. checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
  1481. dependencies = [
  1482. "winapi-util",
  1483. ]
  1484. [[package]]
  1485. name = "thread_local"
  1486. version = "1.0.1"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  1489. dependencies = [
  1490. "lazy_static",
  1491. ]
  1492. [[package]]
  1493. name = "time"
  1494. version = "0.1.43"
  1495. source = "registry+https://github.com/rust-lang/crates.io-index"
  1496. checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
  1497. dependencies = [
  1498. "libc",
  1499. "winapi 0.3.9",
  1500. ]
  1501. [[package]]
  1502. name = "tinyvec"
  1503. version = "0.3.3"
  1504. source = "registry+https://github.com/rust-lang/crates.io-index"
  1505. checksum = "53953d2d3a5ad81d9f844a32f14ebb121f50b650cd59d0ee2a07cf13c617efed"
  1506. [[package]]
  1507. name = "tokio"
  1508. version = "0.2.22"
  1509. source = "registry+https://github.com/rust-lang/crates.io-index"
  1510. checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd"
  1511. dependencies = [
  1512. "bytes",
  1513. "fnv",
  1514. "futures-core",
  1515. "iovec",
  1516. "lazy_static",
  1517. "libc",
  1518. "memchr",
  1519. "mio",
  1520. "mio-uds",
  1521. "num_cpus",
  1522. "pin-project-lite",
  1523. "slab",
  1524. "tokio-macros",
  1525. ]
  1526. [[package]]
  1527. name = "tokio-macros"
  1528. version = "0.2.5"
  1529. source = "registry+https://github.com/rust-lang/crates.io-index"
  1530. checksum = "f0c3acc6aa564495a0f2e1d59fab677cd7f81a19994cfc7f3ad0e64301560389"
  1531. dependencies = [
  1532. "proc-macro2",
  1533. "quote",
  1534. "syn",
  1535. ]
  1536. [[package]]
  1537. name = "tokio-postgres"
  1538. version = "0.5.5"
  1539. source = "registry+https://github.com/rust-lang/crates.io-index"
  1540. checksum = "55a2482c9fe4dd481723cf5c0616f34afc710e55dcda0944e12e7b3316117892"
  1541. dependencies = [
  1542. "async-trait",
  1543. "byteorder",
  1544. "bytes",
  1545. "fallible-iterator",
  1546. "futures",
  1547. "log",
  1548. "parking_lot",
  1549. "percent-encoding",
  1550. "phf",
  1551. "pin-project-lite",
  1552. "postgres-protocol",
  1553. "postgres-types",
  1554. "tokio",
  1555. "tokio-util",
  1556. ]
  1557. [[package]]
  1558. name = "tokio-tls"
  1559. version = "0.3.1"
  1560. source = "registry+https://github.com/rust-lang/crates.io-index"
  1561. checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343"
  1562. dependencies = [
  1563. "native-tls",
  1564. "tokio",
  1565. ]
  1566. [[package]]
  1567. name = "tokio-util"
  1568. version = "0.3.1"
  1569. source = "registry+https://github.com/rust-lang/crates.io-index"
  1570. checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
  1571. dependencies = [
  1572. "bytes",
  1573. "futures-core",
  1574. "futures-sink",
  1575. "log",
  1576. "pin-project-lite",
  1577. "tokio",
  1578. ]
  1579. [[package]]
  1580. name = "toml"
  1581. version = "0.5.6"
  1582. source = "registry+https://github.com/rust-lang/crates.io-index"
  1583. checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
  1584. dependencies = [
  1585. "serde",
  1586. ]
  1587. [[package]]
  1588. name = "tower-service"
  1589. version = "0.3.0"
  1590. source = "registry+https://github.com/rust-lang/crates.io-index"
  1591. checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
  1592. [[package]]
  1593. name = "tracing"
  1594. version = "0.1.17"
  1595. source = "registry+https://github.com/rust-lang/crates.io-index"
  1596. checksum = "dbdf4ccd1652592b01286a5dbe1e2a77d78afaa34beadd9872a5f7396f92aaa9"
  1597. dependencies = [
  1598. "cfg-if",
  1599. "log",
  1600. "tracing-core",
  1601. ]
  1602. [[package]]
  1603. name = "tracing-core"
  1604. version = "0.1.11"
  1605. source = "registry+https://github.com/rust-lang/crates.io-index"
  1606. checksum = "94ae75f0d28ae10786f3b1895c55fe72e79928fd5ccdebb5438c75e93fec178f"
  1607. dependencies = [
  1608. "lazy_static",
  1609. ]
  1610. [[package]]
  1611. name = "triagebot"
  1612. version = "0.1.0"
  1613. dependencies = [
  1614. "anyhow",
  1615. "async-trait",
  1616. "chrono",
  1617. "dotenv",
  1618. "env_logger",
  1619. "futures",
  1620. "glob",
  1621. "hex",
  1622. "hyper",
  1623. "lazy_static",
  1624. "log",
  1625. "native-tls",
  1626. "octocrab",
  1627. "once_cell",
  1628. "openssl",
  1629. "parser",
  1630. "postgres-native-tls",
  1631. "regex",
  1632. "reqwest",
  1633. "rust_team_data",
  1634. "serde",
  1635. "serde_json",
  1636. "serde_path_to_error",
  1637. "tera",
  1638. "tokio",
  1639. "tokio-postgres",
  1640. "toml",
  1641. "url",
  1642. "uuid",
  1643. ]
  1644. [[package]]
  1645. name = "try-lock"
  1646. version = "0.2.3"
  1647. source = "registry+https://github.com/rust-lang/crates.io-index"
  1648. checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
  1649. [[package]]
  1650. name = "typenum"
  1651. version = "1.12.0"
  1652. source = "registry+https://github.com/rust-lang/crates.io-index"
  1653. checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
  1654. [[package]]
  1655. name = "ucd-trie"
  1656. version = "0.1.3"
  1657. source = "registry+https://github.com/rust-lang/crates.io-index"
  1658. checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
  1659. [[package]]
  1660. name = "unicase"
  1661. version = "2.6.0"
  1662. source = "registry+https://github.com/rust-lang/crates.io-index"
  1663. checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
  1664. dependencies = [
  1665. "version_check",
  1666. ]
  1667. [[package]]
  1668. name = "unicode-bidi"
  1669. version = "0.3.4"
  1670. source = "registry+https://github.com/rust-lang/crates.io-index"
  1671. checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  1672. dependencies = [
  1673. "matches",
  1674. ]
  1675. [[package]]
  1676. name = "unicode-normalization"
  1677. version = "0.1.13"
  1678. source = "registry+https://github.com/rust-lang/crates.io-index"
  1679. checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
  1680. dependencies = [
  1681. "tinyvec",
  1682. ]
  1683. [[package]]
  1684. name = "unicode-width"
  1685. version = "0.1.8"
  1686. source = "registry+https://github.com/rust-lang/crates.io-index"
  1687. checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
  1688. [[package]]
  1689. name = "unicode-xid"
  1690. version = "0.2.1"
  1691. source = "registry+https://github.com/rust-lang/crates.io-index"
  1692. checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  1693. [[package]]
  1694. name = "url"
  1695. version = "2.1.1"
  1696. source = "registry+https://github.com/rust-lang/crates.io-index"
  1697. checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
  1698. dependencies = [
  1699. "idna",
  1700. "matches",
  1701. "percent-encoding",
  1702. "serde",
  1703. ]
  1704. [[package]]
  1705. name = "uuid"
  1706. version = "0.8.1"
  1707. source = "registry+https://github.com/rust-lang/crates.io-index"
  1708. checksum = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
  1709. dependencies = [
  1710. "rand",
  1711. ]
  1712. [[package]]
  1713. name = "vcpkg"
  1714. version = "0.2.10"
  1715. source = "registry+https://github.com/rust-lang/crates.io-index"
  1716. checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
  1717. [[package]]
  1718. name = "version_check"
  1719. version = "0.9.2"
  1720. source = "registry+https://github.com/rust-lang/crates.io-index"
  1721. checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
  1722. [[package]]
  1723. name = "walkdir"
  1724. version = "2.3.1"
  1725. source = "registry+https://github.com/rust-lang/crates.io-index"
  1726. checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
  1727. dependencies = [
  1728. "same-file",
  1729. "winapi 0.3.9",
  1730. "winapi-util",
  1731. ]
  1732. [[package]]
  1733. name = "want"
  1734. version = "0.3.0"
  1735. source = "registry+https://github.com/rust-lang/crates.io-index"
  1736. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  1737. dependencies = [
  1738. "log",
  1739. "try-lock",
  1740. ]
  1741. [[package]]
  1742. name = "wasi"
  1743. version = "0.9.0+wasi-snapshot-preview1"
  1744. source = "registry+https://github.com/rust-lang/crates.io-index"
  1745. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  1746. [[package]]
  1747. name = "wasm-bindgen"
  1748. version = "0.2.65"
  1749. source = "registry+https://github.com/rust-lang/crates.io-index"
  1750. checksum = "f3edbcc9536ab7eababcc6d2374a0b7bfe13a2b6d562c5e07f370456b1a8f33d"
  1751. dependencies = [
  1752. "cfg-if",
  1753. "serde",
  1754. "serde_json",
  1755. "wasm-bindgen-macro",
  1756. ]
  1757. [[package]]
  1758. name = "wasm-bindgen-backend"
  1759. version = "0.2.65"
  1760. source = "registry+https://github.com/rust-lang/crates.io-index"
  1761. checksum = "89ed2fb8c84bfad20ea66b26a3743f3e7ba8735a69fe7d95118c33ec8fc1244d"
  1762. dependencies = [
  1763. "bumpalo",
  1764. "lazy_static",
  1765. "log",
  1766. "proc-macro2",
  1767. "quote",
  1768. "syn",
  1769. "wasm-bindgen-shared",
  1770. ]
  1771. [[package]]
  1772. name = "wasm-bindgen-futures"
  1773. version = "0.4.15"
  1774. source = "registry+https://github.com/rust-lang/crates.io-index"
  1775. checksum = "41ad6e4e8b2b7f8c90b6e09a9b590ea15cb0d1dbe28502b5a405cd95d1981671"
  1776. dependencies = [
  1777. "cfg-if",
  1778. "js-sys",
  1779. "wasm-bindgen",
  1780. "web-sys",
  1781. ]
  1782. [[package]]
  1783. name = "wasm-bindgen-macro"
  1784. version = "0.2.65"
  1785. source = "registry+https://github.com/rust-lang/crates.io-index"
  1786. checksum = "eb071268b031a64d92fc6cf691715ca5a40950694d8f683c5bb43db7c730929e"
  1787. dependencies = [
  1788. "quote",
  1789. "wasm-bindgen-macro-support",
  1790. ]
  1791. [[package]]
  1792. name = "wasm-bindgen-macro-support"
  1793. version = "0.2.65"
  1794. source = "registry+https://github.com/rust-lang/crates.io-index"
  1795. checksum = "cf592c807080719d1ff2f245a687cbadb3ed28b2077ed7084b47aba8b691f2c6"
  1796. dependencies = [
  1797. "proc-macro2",
  1798. "quote",
  1799. "syn",
  1800. "wasm-bindgen-backend",
  1801. "wasm-bindgen-shared",
  1802. ]
  1803. [[package]]
  1804. name = "wasm-bindgen-shared"
  1805. version = "0.2.65"
  1806. source = "registry+https://github.com/rust-lang/crates.io-index"
  1807. checksum = "72b6c0220ded549d63860c78c38f3bcc558d1ca3f4efa74942c536ddbbb55e87"
  1808. [[package]]
  1809. name = "web-sys"
  1810. version = "0.3.42"
  1811. source = "registry+https://github.com/rust-lang/crates.io-index"
  1812. checksum = "8be2398f326b7ba09815d0b403095f34dd708579220d099caae89be0b32137b2"
  1813. dependencies = [
  1814. "js-sys",
  1815. "wasm-bindgen",
  1816. ]
  1817. [[package]]
  1818. name = "winapi"
  1819. version = "0.2.8"
  1820. source = "registry+https://github.com/rust-lang/crates.io-index"
  1821. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  1822. [[package]]
  1823. name = "winapi"
  1824. version = "0.3.9"
  1825. source = "registry+https://github.com/rust-lang/crates.io-index"
  1826. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1827. dependencies = [
  1828. "winapi-i686-pc-windows-gnu",
  1829. "winapi-x86_64-pc-windows-gnu",
  1830. ]
  1831. [[package]]
  1832. name = "winapi-build"
  1833. version = "0.1.1"
  1834. source = "registry+https://github.com/rust-lang/crates.io-index"
  1835. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  1836. [[package]]
  1837. name = "winapi-i686-pc-windows-gnu"
  1838. version = "0.4.0"
  1839. source = "registry+https://github.com/rust-lang/crates.io-index"
  1840. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1841. [[package]]
  1842. name = "winapi-util"
  1843. version = "0.1.5"
  1844. source = "registry+https://github.com/rust-lang/crates.io-index"
  1845. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  1846. dependencies = [
  1847. "winapi 0.3.9",
  1848. ]
  1849. [[package]]
  1850. name = "winapi-x86_64-pc-windows-gnu"
  1851. version = "0.4.0"
  1852. source = "registry+https://github.com/rust-lang/crates.io-index"
  1853. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1854. [[package]]
  1855. name = "winreg"
  1856. version = "0.7.0"
  1857. source = "registry+https://github.com/rust-lang/crates.io-index"
  1858. checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
  1859. dependencies = [
  1860. "winapi 0.3.9",
  1861. ]
  1862. [[package]]
  1863. name = "ws2_32-sys"
  1864. version = "0.2.1"
  1865. source = "registry+https://github.com/rust-lang/crates.io-index"
  1866. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  1867. dependencies = [
  1868. "winapi 0.2.8",
  1869. "winapi-build",
  1870. ]