Cargo.lock 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "actix-codec"
  6. version = "0.5.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
  9. dependencies = [
  10. "bitflags",
  11. "bytes",
  12. "futures-core",
  13. "futures-sink",
  14. "log",
  15. "memchr",
  16. "pin-project-lite",
  17. "tokio",
  18. "tokio-util",
  19. ]
  20. [[package]]
  21. name = "actix-cors"
  22. version = "0.6.1"
  23. source = "registry+https://github.com/rust-lang/crates.io-index"
  24. checksum = "414360eed71ba2d5435b185ba43ecbe281dfab5df3898286d6b7be8074372c92"
  25. dependencies = [
  26. "actix-utils",
  27. "actix-web",
  28. "derive_more",
  29. "futures-util",
  30. "log",
  31. "once_cell",
  32. "smallvec",
  33. ]
  34. [[package]]
  35. name = "actix-http"
  36. version = "3.0.4"
  37. source = "registry+https://github.com/rust-lang/crates.io-index"
  38. checksum = "a5885cb81a0d4d0d322864bea1bb6c2a8144626b4fdc625d4c51eba197e7797a"
  39. dependencies = [
  40. "actix-codec",
  41. "actix-rt",
  42. "actix-service",
  43. "actix-utils",
  44. "ahash",
  45. "base64",
  46. "bitflags",
  47. "brotli",
  48. "bytes",
  49. "bytestring",
  50. "derive_more",
  51. "encoding_rs",
  52. "flate2",
  53. "futures-core",
  54. "h2",
  55. "http",
  56. "httparse",
  57. "httpdate",
  58. "itoa 1.0.1",
  59. "language-tags",
  60. "local-channel",
  61. "log",
  62. "mime",
  63. "percent-encoding",
  64. "pin-project-lite",
  65. "rand",
  66. "sha-1",
  67. "smallvec",
  68. "zstd",
  69. ]
  70. [[package]]
  71. name = "actix-macros"
  72. version = "0.2.3"
  73. source = "registry+https://github.com/rust-lang/crates.io-index"
  74. checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
  75. dependencies = [
  76. "quote",
  77. "syn",
  78. ]
  79. [[package]]
  80. name = "actix-router"
  81. version = "0.5.0"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "eb60846b52c118f2f04a56cc90880a274271c489b2498623d58176f8ca21fa80"
  84. dependencies = [
  85. "bytestring",
  86. "firestorm",
  87. "http",
  88. "log",
  89. "regex",
  90. "serde",
  91. ]
  92. [[package]]
  93. name = "actix-rt"
  94. version = "2.7.0"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
  97. dependencies = [
  98. "futures-core",
  99. "tokio",
  100. ]
  101. [[package]]
  102. name = "actix-server"
  103. version = "2.1.1"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
  106. dependencies = [
  107. "actix-rt",
  108. "actix-service",
  109. "actix-utils",
  110. "futures-core",
  111. "futures-util",
  112. "mio",
  113. "num_cpus",
  114. "socket2",
  115. "tokio",
  116. "tracing",
  117. ]
  118. [[package]]
  119. name = "actix-service"
  120. version = "2.0.2"
  121. source = "registry+https://github.com/rust-lang/crates.io-index"
  122. checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
  123. dependencies = [
  124. "futures-core",
  125. "paste",
  126. "pin-project-lite",
  127. ]
  128. [[package]]
  129. name = "actix-utils"
  130. version = "3.0.0"
  131. source = "registry+https://github.com/rust-lang/crates.io-index"
  132. checksum = "e491cbaac2e7fc788dfff99ff48ef317e23b3cf63dbaf7aaab6418f40f92aa94"
  133. dependencies = [
  134. "local-waker",
  135. "pin-project-lite",
  136. ]
  137. [[package]]
  138. name = "actix-web"
  139. version = "4.0.1"
  140. source = "registry+https://github.com/rust-lang/crates.io-index"
  141. checksum = "f4e5ebffd51d50df56a3ae0de0e59487340ca456f05dd0b90c0a7a6dd6a74d31"
  142. dependencies = [
  143. "actix-codec",
  144. "actix-http",
  145. "actix-macros",
  146. "actix-router",
  147. "actix-rt",
  148. "actix-server",
  149. "actix-service",
  150. "actix-utils",
  151. "actix-web-codegen",
  152. "ahash",
  153. "bytes",
  154. "bytestring",
  155. "cfg-if",
  156. "cookie",
  157. "derive_more",
  158. "encoding_rs",
  159. "futures-core",
  160. "futures-util",
  161. "itoa 1.0.1",
  162. "language-tags",
  163. "log",
  164. "mime",
  165. "once_cell",
  166. "pin-project-lite",
  167. "regex",
  168. "serde",
  169. "serde_json",
  170. "serde_urlencoded",
  171. "smallvec",
  172. "socket2",
  173. "time",
  174. "url",
  175. ]
  176. [[package]]
  177. name = "actix-web-codegen"
  178. version = "4.0.0"
  179. source = "registry+https://github.com/rust-lang/crates.io-index"
  180. checksum = "7525bedf54704abb1d469e88d7e7e9226df73778798a69cea5022d53b2ae91bc"
  181. dependencies = [
  182. "actix-router",
  183. "proc-macro2",
  184. "quote",
  185. "syn",
  186. ]
  187. [[package]]
  188. name = "addr2line"
  189. version = "0.17.0"
  190. source = "registry+https://github.com/rust-lang/crates.io-index"
  191. checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
  192. dependencies = [
  193. "gimli",
  194. ]
  195. [[package]]
  196. name = "adler"
  197. version = "1.0.2"
  198. source = "registry+https://github.com/rust-lang/crates.io-index"
  199. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  200. [[package]]
  201. name = "ahash"
  202. version = "0.7.6"
  203. source = "registry+https://github.com/rust-lang/crates.io-index"
  204. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  205. dependencies = [
  206. "getrandom",
  207. "once_cell",
  208. "version_check",
  209. ]
  210. [[package]]
  211. name = "aho-corasick"
  212. version = "0.7.18"
  213. source = "registry+https://github.com/rust-lang/crates.io-index"
  214. checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
  215. dependencies = [
  216. "memchr",
  217. ]
  218. [[package]]
  219. name = "alloc-no-stdlib"
  220. version = "2.0.3"
  221. source = "registry+https://github.com/rust-lang/crates.io-index"
  222. checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
  223. [[package]]
  224. name = "alloc-stdlib"
  225. version = "0.2.1"
  226. source = "registry+https://github.com/rust-lang/crates.io-index"
  227. checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
  228. dependencies = [
  229. "alloc-no-stdlib",
  230. ]
  231. [[package]]
  232. name = "arrayvec"
  233. version = "0.4.12"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
  236. dependencies = [
  237. "nodrop",
  238. ]
  239. [[package]]
  240. name = "atty"
  241. version = "0.2.14"
  242. source = "registry+https://github.com/rust-lang/crates.io-index"
  243. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  244. dependencies = [
  245. "hermit-abi",
  246. "libc",
  247. "winapi",
  248. ]
  249. [[package]]
  250. name = "autocfg"
  251. version = "1.1.0"
  252. source = "registry+https://github.com/rust-lang/crates.io-index"
  253. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  254. [[package]]
  255. name = "backtrace"
  256. version = "0.3.65"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "11a17d453482a265fd5f8479f2a3f405566e6ca627837aaddb85af8b1ab8ef61"
  259. dependencies = [
  260. "addr2line",
  261. "cc",
  262. "cfg-if",
  263. "libc",
  264. "miniz_oxide",
  265. "object",
  266. "rustc-demangle",
  267. ]
  268. [[package]]
  269. name = "base64"
  270. version = "0.13.0"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  273. [[package]]
  274. name = "bitflags"
  275. version = "1.3.2"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  278. [[package]]
  279. name = "block-buffer"
  280. version = "0.10.2"
  281. source = "registry+https://github.com/rust-lang/crates.io-index"
  282. checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
  283. dependencies = [
  284. "generic-array",
  285. ]
  286. [[package]]
  287. name = "brotli"
  288. version = "3.3.4"
  289. source = "registry+https://github.com/rust-lang/crates.io-index"
  290. checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
  291. dependencies = [
  292. "alloc-no-stdlib",
  293. "alloc-stdlib",
  294. "brotli-decompressor",
  295. ]
  296. [[package]]
  297. name = "brotli-decompressor"
  298. version = "2.3.2"
  299. source = "registry+https://github.com/rust-lang/crates.io-index"
  300. checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
  301. dependencies = [
  302. "alloc-no-stdlib",
  303. "alloc-stdlib",
  304. ]
  305. [[package]]
  306. name = "bstr"
  307. version = "0.2.17"
  308. source = "registry+https://github.com/rust-lang/crates.io-index"
  309. checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
  310. dependencies = [
  311. "lazy_static",
  312. "memchr",
  313. "regex-automata",
  314. "serde",
  315. ]
  316. [[package]]
  317. name = "bumpalo"
  318. version = "3.9.1"
  319. source = "registry+https://github.com/rust-lang/crates.io-index"
  320. checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
  321. [[package]]
  322. name = "bytemuck"
  323. version = "1.9.1"
  324. source = "registry+https://github.com/rust-lang/crates.io-index"
  325. checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc"
  326. [[package]]
  327. name = "bytes"
  328. version = "1.1.0"
  329. source = "registry+https://github.com/rust-lang/crates.io-index"
  330. checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
  331. [[package]]
  332. name = "bytestring"
  333. version = "1.0.0"
  334. source = "registry+https://github.com/rust-lang/crates.io-index"
  335. checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
  336. dependencies = [
  337. "bytes",
  338. ]
  339. [[package]]
  340. name = "cast"
  341. version = "0.2.7"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "4c24dab4283a142afa2fdca129b80ad2c6284e073930f964c3a1293c225ee39a"
  344. dependencies = [
  345. "rustc_version",
  346. ]
  347. [[package]]
  348. name = "cc"
  349. version = "1.0.73"
  350. source = "registry+https://github.com/rust-lang/crates.io-index"
  351. checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
  352. dependencies = [
  353. "jobserver",
  354. ]
  355. [[package]]
  356. name = "cfg-if"
  357. version = "1.0.0"
  358. source = "registry+https://github.com/rust-lang/crates.io-index"
  359. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  360. [[package]]
  361. name = "clap"
  362. version = "2.34.0"
  363. source = "registry+https://github.com/rust-lang/crates.io-index"
  364. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  365. dependencies = [
  366. "bitflags",
  367. "textwrap",
  368. "unicode-width",
  369. ]
  370. [[package]]
  371. name = "convert_case"
  372. version = "0.4.0"
  373. source = "registry+https://github.com/rust-lang/crates.io-index"
  374. checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
  375. [[package]]
  376. name = "cookie"
  377. version = "0.16.0"
  378. source = "registry+https://github.com/rust-lang/crates.io-index"
  379. checksum = "94d4706de1b0fa5b132270cddffa8585166037822e260a944fe161acd137ca05"
  380. dependencies = [
  381. "percent-encoding",
  382. "time",
  383. "version_check",
  384. ]
  385. [[package]]
  386. name = "core-foundation"
  387. version = "0.9.3"
  388. source = "registry+https://github.com/rust-lang/crates.io-index"
  389. checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
  390. dependencies = [
  391. "core-foundation-sys",
  392. "libc",
  393. ]
  394. [[package]]
  395. name = "core-foundation-sys"
  396. version = "0.8.3"
  397. source = "registry+https://github.com/rust-lang/crates.io-index"
  398. checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
  399. [[package]]
  400. name = "cpp_demangle"
  401. version = "0.3.5"
  402. source = "registry+https://github.com/rust-lang/crates.io-index"
  403. checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f"
  404. dependencies = [
  405. "cfg-if",
  406. ]
  407. [[package]]
  408. name = "cpufeatures"
  409. version = "0.2.2"
  410. source = "registry+https://github.com/rust-lang/crates.io-index"
  411. checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
  412. dependencies = [
  413. "libc",
  414. ]
  415. [[package]]
  416. name = "crc32fast"
  417. version = "1.3.2"
  418. source = "registry+https://github.com/rust-lang/crates.io-index"
  419. checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
  420. dependencies = [
  421. "cfg-if",
  422. ]
  423. [[package]]
  424. name = "criterion"
  425. version = "0.3.5"
  426. source = "registry+https://github.com/rust-lang/crates.io-index"
  427. checksum = "1604dafd25fba2fe2d5895a9da139f8dc9b319a5fe5354ca137cbbce4e178d10"
  428. dependencies = [
  429. "atty",
  430. "cast",
  431. "clap",
  432. "criterion-plot",
  433. "csv",
  434. "itertools",
  435. "lazy_static",
  436. "num-traits",
  437. "oorandom",
  438. "plotters",
  439. "rayon",
  440. "regex",
  441. "serde",
  442. "serde_cbor",
  443. "serde_derive",
  444. "serde_json",
  445. "tinytemplate",
  446. "walkdir",
  447. ]
  448. [[package]]
  449. name = "criterion-plot"
  450. version = "0.4.4"
  451. source = "registry+https://github.com/rust-lang/crates.io-index"
  452. checksum = "d00996de9f2f7559f7f4dc286073197f83e92256a59ed395f9aac01fe717da57"
  453. dependencies = [
  454. "cast",
  455. "itertools",
  456. ]
  457. [[package]]
  458. name = "crossbeam-channel"
  459. version = "0.5.4"
  460. source = "registry+https://github.com/rust-lang/crates.io-index"
  461. checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
  462. dependencies = [
  463. "cfg-if",
  464. "crossbeam-utils",
  465. ]
  466. [[package]]
  467. name = "crossbeam-deque"
  468. version = "0.8.1"
  469. source = "registry+https://github.com/rust-lang/crates.io-index"
  470. checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
  471. dependencies = [
  472. "cfg-if",
  473. "crossbeam-epoch",
  474. "crossbeam-utils",
  475. ]
  476. [[package]]
  477. name = "crossbeam-epoch"
  478. version = "0.9.8"
  479. source = "registry+https://github.com/rust-lang/crates.io-index"
  480. checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
  481. dependencies = [
  482. "autocfg",
  483. "cfg-if",
  484. "crossbeam-utils",
  485. "lazy_static",
  486. "memoffset",
  487. "scopeguard",
  488. ]
  489. [[package]]
  490. name = "crossbeam-utils"
  491. version = "0.8.8"
  492. source = "registry+https://github.com/rust-lang/crates.io-index"
  493. checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
  494. dependencies = [
  495. "cfg-if",
  496. "lazy_static",
  497. ]
  498. [[package]]
  499. name = "crypto-common"
  500. version = "0.1.3"
  501. source = "registry+https://github.com/rust-lang/crates.io-index"
  502. checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
  503. dependencies = [
  504. "generic-array",
  505. "typenum",
  506. ]
  507. [[package]]
  508. name = "csv"
  509. version = "1.1.6"
  510. source = "registry+https://github.com/rust-lang/crates.io-index"
  511. checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
  512. dependencies = [
  513. "bstr",
  514. "csv-core",
  515. "itoa 0.4.8",
  516. "ryu",
  517. "serde",
  518. ]
  519. [[package]]
  520. name = "csv-core"
  521. version = "0.1.10"
  522. source = "registry+https://github.com/rust-lang/crates.io-index"
  523. checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
  524. dependencies = [
  525. "memchr",
  526. ]
  527. [[package]]
  528. name = "debugid"
  529. version = "0.7.3"
  530. source = "registry+https://github.com/rust-lang/crates.io-index"
  531. checksum = "d6ee87af31d84ef885378aebca32be3d682b0e0dc119d5b4860a2c5bb5046730"
  532. dependencies = [
  533. "uuid 0.8.2",
  534. ]
  535. [[package]]
  536. name = "derive_more"
  537. version = "0.99.17"
  538. source = "registry+https://github.com/rust-lang/crates.io-index"
  539. checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
  540. dependencies = [
  541. "convert_case",
  542. "proc-macro2",
  543. "quote",
  544. "rustc_version",
  545. "syn",
  546. ]
  547. [[package]]
  548. name = "digest"
  549. version = "0.10.3"
  550. source = "registry+https://github.com/rust-lang/crates.io-index"
  551. checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
  552. dependencies = [
  553. "block-buffer",
  554. "crypto-common",
  555. ]
  556. [[package]]
  557. name = "either"
  558. version = "1.6.1"
  559. source = "registry+https://github.com/rust-lang/crates.io-index"
  560. checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
  561. [[package]]
  562. name = "encoding_rs"
  563. version = "0.8.31"
  564. source = "registry+https://github.com/rust-lang/crates.io-index"
  565. checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
  566. dependencies = [
  567. "cfg-if",
  568. ]
  569. [[package]]
  570. name = "fastrand"
  571. version = "1.7.0"
  572. source = "registry+https://github.com/rust-lang/crates.io-index"
  573. checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
  574. dependencies = [
  575. "instant",
  576. ]
  577. [[package]]
  578. name = "firestorm"
  579. version = "0.5.0"
  580. source = "registry+https://github.com/rust-lang/crates.io-index"
  581. checksum = "4d3d6188b8804df28032815ea256b6955c9625c24da7525f387a7af02fbb8f01"
  582. [[package]]
  583. name = "flate2"
  584. version = "1.0.23"
  585. source = "registry+https://github.com/rust-lang/crates.io-index"
  586. checksum = "b39522e96686d38f4bc984b9198e3a0613264abaebaff2c5c918bfa6b6da09af"
  587. dependencies = [
  588. "cfg-if",
  589. "crc32fast",
  590. "libc",
  591. "miniz_oxide",
  592. ]
  593. [[package]]
  594. name = "fnv"
  595. version = "1.0.7"
  596. source = "registry+https://github.com/rust-lang/crates.io-index"
  597. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  598. [[package]]
  599. name = "foreign-types"
  600. version = "0.3.2"
  601. source = "registry+https://github.com/rust-lang/crates.io-index"
  602. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  603. dependencies = [
  604. "foreign-types-shared",
  605. ]
  606. [[package]]
  607. name = "foreign-types-shared"
  608. version = "0.1.1"
  609. source = "registry+https://github.com/rust-lang/crates.io-index"
  610. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  611. [[package]]
  612. name = "form_urlencoded"
  613. version = "1.0.1"
  614. source = "registry+https://github.com/rust-lang/crates.io-index"
  615. checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
  616. dependencies = [
  617. "matches",
  618. "percent-encoding",
  619. ]
  620. [[package]]
  621. name = "futures"
  622. version = "0.3.21"
  623. source = "registry+https://github.com/rust-lang/crates.io-index"
  624. checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
  625. dependencies = [
  626. "futures-channel",
  627. "futures-core",
  628. "futures-executor",
  629. "futures-io",
  630. "futures-sink",
  631. "futures-task",
  632. "futures-util",
  633. ]
  634. [[package]]
  635. name = "futures-channel"
  636. version = "0.3.21"
  637. source = "registry+https://github.com/rust-lang/crates.io-index"
  638. checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
  639. dependencies = [
  640. "futures-core",
  641. "futures-sink",
  642. ]
  643. [[package]]
  644. name = "futures-core"
  645. version = "0.3.21"
  646. source = "registry+https://github.com/rust-lang/crates.io-index"
  647. checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
  648. [[package]]
  649. name = "futures-executor"
  650. version = "0.3.21"
  651. source = "registry+https://github.com/rust-lang/crates.io-index"
  652. checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
  653. dependencies = [
  654. "futures-core",
  655. "futures-task",
  656. "futures-util",
  657. ]
  658. [[package]]
  659. name = "futures-io"
  660. version = "0.3.21"
  661. source = "registry+https://github.com/rust-lang/crates.io-index"
  662. checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
  663. [[package]]
  664. name = "futures-macro"
  665. version = "0.3.21"
  666. source = "registry+https://github.com/rust-lang/crates.io-index"
  667. checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
  668. dependencies = [
  669. "proc-macro2",
  670. "quote",
  671. "syn",
  672. ]
  673. [[package]]
  674. name = "futures-sink"
  675. version = "0.3.21"
  676. source = "registry+https://github.com/rust-lang/crates.io-index"
  677. checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
  678. [[package]]
  679. name = "futures-task"
  680. version = "0.3.21"
  681. source = "registry+https://github.com/rust-lang/crates.io-index"
  682. checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
  683. [[package]]
  684. name = "futures-util"
  685. version = "0.3.21"
  686. source = "registry+https://github.com/rust-lang/crates.io-index"
  687. checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
  688. dependencies = [
  689. "futures-channel",
  690. "futures-core",
  691. "futures-io",
  692. "futures-macro",
  693. "futures-sink",
  694. "futures-task",
  695. "memchr",
  696. "pin-project-lite",
  697. "pin-utils",
  698. "slab",
  699. ]
  700. [[package]]
  701. name = "generic-array"
  702. version = "0.14.5"
  703. source = "registry+https://github.com/rust-lang/crates.io-index"
  704. checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
  705. dependencies = [
  706. "typenum",
  707. "version_check",
  708. ]
  709. [[package]]
  710. name = "getrandom"
  711. version = "0.2.6"
  712. source = "registry+https://github.com/rust-lang/crates.io-index"
  713. checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
  714. dependencies = [
  715. "cfg-if",
  716. "js-sys",
  717. "libc",
  718. "wasi 0.10.2+wasi-snapshot-preview1",
  719. "wasm-bindgen",
  720. ]
  721. [[package]]
  722. name = "gimli"
  723. version = "0.26.1"
  724. source = "registry+https://github.com/rust-lang/crates.io-index"
  725. checksum = "78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4"
  726. [[package]]
  727. name = "h2"
  728. version = "0.3.13"
  729. source = "registry+https://github.com/rust-lang/crates.io-index"
  730. checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
  731. dependencies = [
  732. "bytes",
  733. "fnv",
  734. "futures-core",
  735. "futures-sink",
  736. "futures-util",
  737. "http",
  738. "indexmap",
  739. "slab",
  740. "tokio",
  741. "tokio-util",
  742. "tracing",
  743. ]
  744. [[package]]
  745. name = "half"
  746. version = "1.8.2"
  747. source = "registry+https://github.com/rust-lang/crates.io-index"
  748. checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
  749. [[package]]
  750. name = "hashbrown"
  751. version = "0.11.2"
  752. source = "registry+https://github.com/rust-lang/crates.io-index"
  753. checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
  754. [[package]]
  755. name = "hermit-abi"
  756. version = "0.1.19"
  757. source = "registry+https://github.com/rust-lang/crates.io-index"
  758. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  759. dependencies = [
  760. "libc",
  761. ]
  762. [[package]]
  763. name = "http"
  764. version = "0.2.7"
  765. source = "registry+https://github.com/rust-lang/crates.io-index"
  766. checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
  767. dependencies = [
  768. "bytes",
  769. "fnv",
  770. "itoa 1.0.1",
  771. ]
  772. [[package]]
  773. name = "http-body"
  774. version = "0.4.4"
  775. source = "registry+https://github.com/rust-lang/crates.io-index"
  776. checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
  777. dependencies = [
  778. "bytes",
  779. "http",
  780. "pin-project-lite",
  781. ]
  782. [[package]]
  783. name = "httparse"
  784. version = "1.7.1"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
  787. [[package]]
  788. name = "httpdate"
  789. version = "1.0.2"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
  792. [[package]]
  793. name = "hyper"
  794. version = "0.14.18"
  795. source = "registry+https://github.com/rust-lang/crates.io-index"
  796. checksum = "b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2"
  797. dependencies = [
  798. "bytes",
  799. "futures-channel",
  800. "futures-core",
  801. "futures-util",
  802. "h2",
  803. "http",
  804. "http-body",
  805. "httparse",
  806. "httpdate",
  807. "itoa 1.0.1",
  808. "pin-project-lite",
  809. "socket2",
  810. "tokio",
  811. "tower-service",
  812. "tracing",
  813. "want",
  814. ]
  815. [[package]]
  816. name = "hyper-tls"
  817. version = "0.5.0"
  818. source = "registry+https://github.com/rust-lang/crates.io-index"
  819. checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
  820. dependencies = [
  821. "bytes",
  822. "hyper",
  823. "native-tls",
  824. "tokio",
  825. "tokio-native-tls",
  826. ]
  827. [[package]]
  828. name = "idna"
  829. version = "0.2.3"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
  832. dependencies = [
  833. "matches",
  834. "unicode-bidi",
  835. "unicode-normalization",
  836. ]
  837. [[package]]
  838. name = "indexmap"
  839. version = "1.8.1"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee"
  842. dependencies = [
  843. "autocfg",
  844. "hashbrown",
  845. ]
  846. [[package]]
  847. name = "inferno"
  848. version = "0.10.12"
  849. source = "registry+https://github.com/rust-lang/crates.io-index"
  850. checksum = "de3886428c6400486522cf44b8626e7b94ad794c14390290f2a274dcf728a58f"
  851. dependencies = [
  852. "ahash",
  853. "atty",
  854. "indexmap",
  855. "itoa 1.0.1",
  856. "lazy_static",
  857. "log",
  858. "num-format",
  859. "quick-xml",
  860. "rgb",
  861. "str_stack",
  862. ]
  863. [[package]]
  864. name = "instant"
  865. version = "0.1.12"
  866. source = "registry+https://github.com/rust-lang/crates.io-index"
  867. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  868. dependencies = [
  869. "cfg-if",
  870. ]
  871. [[package]]
  872. name = "ipnet"
  873. version = "2.5.0"
  874. source = "registry+https://github.com/rust-lang/crates.io-index"
  875. checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
  876. [[package]]
  877. name = "itertools"
  878. version = "0.10.3"
  879. source = "registry+https://github.com/rust-lang/crates.io-index"
  880. checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
  881. dependencies = [
  882. "either",
  883. ]
  884. [[package]]
  885. name = "itoa"
  886. version = "0.4.8"
  887. source = "registry+https://github.com/rust-lang/crates.io-index"
  888. checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
  889. [[package]]
  890. name = "itoa"
  891. version = "1.0.1"
  892. source = "registry+https://github.com/rust-lang/crates.io-index"
  893. checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
  894. [[package]]
  895. name = "jobserver"
  896. version = "0.1.24"
  897. source = "registry+https://github.com/rust-lang/crates.io-index"
  898. checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
  899. dependencies = [
  900. "libc",
  901. ]
  902. [[package]]
  903. name = "js-sys"
  904. version = "0.3.57"
  905. source = "registry+https://github.com/rust-lang/crates.io-index"
  906. checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
  907. dependencies = [
  908. "wasm-bindgen",
  909. ]
  910. [[package]]
  911. name = "language-tags"
  912. version = "0.3.2"
  913. source = "registry+https://github.com/rust-lang/crates.io-index"
  914. checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
  915. [[package]]
  916. name = "lazy_static"
  917. version = "1.4.0"
  918. source = "registry+https://github.com/rust-lang/crates.io-index"
  919. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  920. [[package]]
  921. name = "libc"
  922. version = "0.2.125"
  923. source = "registry+https://github.com/rust-lang/crates.io-index"
  924. checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
  925. [[package]]
  926. name = "local-channel"
  927. version = "0.1.2"
  928. source = "registry+https://github.com/rust-lang/crates.io-index"
  929. checksum = "6246c68cf195087205a0512559c97e15eaf95198bf0e206d662092cdcb03fe9f"
  930. dependencies = [
  931. "futures-core",
  932. "futures-sink",
  933. "futures-util",
  934. "local-waker",
  935. ]
  936. [[package]]
  937. name = "local-waker"
  938. version = "0.1.2"
  939. source = "registry+https://github.com/rust-lang/crates.io-index"
  940. checksum = "902eb695eb0591864543cbfbf6d742510642a605a61fc5e97fe6ceb5a30ac4fb"
  941. [[package]]
  942. name = "lock_api"
  943. version = "0.4.7"
  944. source = "registry+https://github.com/rust-lang/crates.io-index"
  945. checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
  946. dependencies = [
  947. "autocfg",
  948. "scopeguard",
  949. ]
  950. [[package]]
  951. name = "log"
  952. version = "0.4.16"
  953. source = "registry+https://github.com/rust-lang/crates.io-index"
  954. checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
  955. dependencies = [
  956. "cfg-if",
  957. ]
  958. [[package]]
  959. name = "matches"
  960. version = "0.1.9"
  961. source = "registry+https://github.com/rust-lang/crates.io-index"
  962. checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
  963. [[package]]
  964. name = "memchr"
  965. version = "2.5.0"
  966. source = "registry+https://github.com/rust-lang/crates.io-index"
  967. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  968. [[package]]
  969. name = "memmap2"
  970. version = "0.5.3"
  971. source = "registry+https://github.com/rust-lang/crates.io-index"
  972. checksum = "057a3db23999c867821a7a59feb06a578fcb03685e983dff90daf9e7d24ac08f"
  973. dependencies = [
  974. "libc",
  975. ]
  976. [[package]]
  977. name = "memoffset"
  978. version = "0.6.5"
  979. source = "registry+https://github.com/rust-lang/crates.io-index"
  980. checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
  981. dependencies = [
  982. "autocfg",
  983. ]
  984. [[package]]
  985. name = "mime"
  986. version = "0.3.16"
  987. source = "registry+https://github.com/rust-lang/crates.io-index"
  988. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  989. [[package]]
  990. name = "miniz_oxide"
  991. version = "0.5.1"
  992. source = "registry+https://github.com/rust-lang/crates.io-index"
  993. checksum = "d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082"
  994. dependencies = [
  995. "adler",
  996. ]
  997. [[package]]
  998. name = "mio"
  999. version = "0.8.2"
  1000. source = "registry+https://github.com/rust-lang/crates.io-index"
  1001. checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
  1002. dependencies = [
  1003. "libc",
  1004. "log",
  1005. "miow",
  1006. "ntapi",
  1007. "wasi 0.11.0+wasi-snapshot-preview1",
  1008. "winapi",
  1009. ]
  1010. [[package]]
  1011. name = "miow"
  1012. version = "0.3.7"
  1013. source = "registry+https://github.com/rust-lang/crates.io-index"
  1014. checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
  1015. dependencies = [
  1016. "winapi",
  1017. ]
  1018. [[package]]
  1019. name = "native-tls"
  1020. version = "0.2.10"
  1021. source = "registry+https://github.com/rust-lang/crates.io-index"
  1022. checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
  1023. dependencies = [
  1024. "lazy_static",
  1025. "libc",
  1026. "log",
  1027. "openssl",
  1028. "openssl-probe",
  1029. "openssl-sys",
  1030. "schannel",
  1031. "security-framework",
  1032. "security-framework-sys",
  1033. "tempfile",
  1034. ]
  1035. [[package]]
  1036. name = "nix"
  1037. version = "0.20.0"
  1038. source = "registry+https://github.com/rust-lang/crates.io-index"
  1039. checksum = "fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a"
  1040. dependencies = [
  1041. "bitflags",
  1042. "cc",
  1043. "cfg-if",
  1044. "libc",
  1045. ]
  1046. [[package]]
  1047. name = "nodrop"
  1048. version = "0.1.14"
  1049. source = "registry+https://github.com/rust-lang/crates.io-index"
  1050. checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
  1051. [[package]]
  1052. name = "ntapi"
  1053. version = "0.3.7"
  1054. source = "registry+https://github.com/rust-lang/crates.io-index"
  1055. checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
  1056. dependencies = [
  1057. "winapi",
  1058. ]
  1059. [[package]]
  1060. name = "num-format"
  1061. version = "0.4.0"
  1062. source = "registry+https://github.com/rust-lang/crates.io-index"
  1063. checksum = "bafe4179722c2894288ee77a9f044f02811c86af699344c498b0840c698a2465"
  1064. dependencies = [
  1065. "arrayvec",
  1066. "itoa 0.4.8",
  1067. ]
  1068. [[package]]
  1069. name = "num-traits"
  1070. version = "0.2.14"
  1071. source = "registry+https://github.com/rust-lang/crates.io-index"
  1072. checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
  1073. dependencies = [
  1074. "autocfg",
  1075. ]
  1076. [[package]]
  1077. name = "num_cpus"
  1078. version = "1.13.1"
  1079. source = "registry+https://github.com/rust-lang/crates.io-index"
  1080. checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
  1081. dependencies = [
  1082. "hermit-abi",
  1083. "libc",
  1084. ]
  1085. [[package]]
  1086. name = "num_threads"
  1087. version = "0.1.5"
  1088. source = "registry+https://github.com/rust-lang/crates.io-index"
  1089. checksum = "aba1801fb138d8e85e11d0fc70baf4fe1cdfffda7c6cd34a854905df588e5ed0"
  1090. dependencies = [
  1091. "libc",
  1092. ]
  1093. [[package]]
  1094. name = "object"
  1095. version = "0.28.3"
  1096. source = "registry+https://github.com/rust-lang/crates.io-index"
  1097. checksum = "40bec70ba014595f99f7aa110b84331ffe1ee9aece7fe6f387cc7e3ecda4d456"
  1098. dependencies = [
  1099. "memchr",
  1100. ]
  1101. [[package]]
  1102. name = "once_cell"
  1103. version = "1.10.0"
  1104. source = "registry+https://github.com/rust-lang/crates.io-index"
  1105. checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
  1106. [[package]]
  1107. name = "oorandom"
  1108. version = "11.1.3"
  1109. source = "registry+https://github.com/rust-lang/crates.io-index"
  1110. checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
  1111. [[package]]
  1112. name = "openssl"
  1113. version = "0.10.38"
  1114. source = "registry+https://github.com/rust-lang/crates.io-index"
  1115. checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
  1116. dependencies = [
  1117. "bitflags",
  1118. "cfg-if",
  1119. "foreign-types",
  1120. "libc",
  1121. "once_cell",
  1122. "openssl-sys",
  1123. ]
  1124. [[package]]
  1125. name = "openssl-probe"
  1126. version = "0.1.5"
  1127. source = "registry+https://github.com/rust-lang/crates.io-index"
  1128. checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
  1129. [[package]]
  1130. name = "openssl-sys"
  1131. version = "0.9.72"
  1132. source = "registry+https://github.com/rust-lang/crates.io-index"
  1133. checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
  1134. dependencies = [
  1135. "autocfg",
  1136. "cc",
  1137. "libc",
  1138. "pkg-config",
  1139. "vcpkg",
  1140. ]
  1141. [[package]]
  1142. name = "parking_lot"
  1143. version = "0.11.2"
  1144. source = "registry+https://github.com/rust-lang/crates.io-index"
  1145. checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
  1146. dependencies = [
  1147. "instant",
  1148. "lock_api",
  1149. "parking_lot_core 0.8.5",
  1150. ]
  1151. [[package]]
  1152. name = "parking_lot"
  1153. version = "0.12.0"
  1154. source = "registry+https://github.com/rust-lang/crates.io-index"
  1155. checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58"
  1156. dependencies = [
  1157. "lock_api",
  1158. "parking_lot_core 0.9.3",
  1159. ]
  1160. [[package]]
  1161. name = "parking_lot_core"
  1162. version = "0.8.5"
  1163. source = "registry+https://github.com/rust-lang/crates.io-index"
  1164. checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
  1165. dependencies = [
  1166. "cfg-if",
  1167. "instant",
  1168. "libc",
  1169. "redox_syscall",
  1170. "smallvec",
  1171. "winapi",
  1172. ]
  1173. [[package]]
  1174. name = "parking_lot_core"
  1175. version = "0.9.3"
  1176. source = "registry+https://github.com/rust-lang/crates.io-index"
  1177. checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
  1178. dependencies = [
  1179. "cfg-if",
  1180. "libc",
  1181. "redox_syscall",
  1182. "smallvec",
  1183. "windows-sys",
  1184. ]
  1185. [[package]]
  1186. name = "paste"
  1187. version = "1.0.7"
  1188. source = "registry+https://github.com/rust-lang/crates.io-index"
  1189. checksum = "0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc"
  1190. [[package]]
  1191. name = "percent-encoding"
  1192. version = "2.1.0"
  1193. source = "registry+https://github.com/rust-lang/crates.io-index"
  1194. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  1195. [[package]]
  1196. name = "pin-project-lite"
  1197. version = "0.2.9"
  1198. source = "registry+https://github.com/rust-lang/crates.io-index"
  1199. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  1200. [[package]]
  1201. name = "pin-utils"
  1202. version = "0.1.0"
  1203. source = "registry+https://github.com/rust-lang/crates.io-index"
  1204. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  1205. [[package]]
  1206. name = "pkg-config"
  1207. version = "0.3.25"
  1208. source = "registry+https://github.com/rust-lang/crates.io-index"
  1209. checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
  1210. [[package]]
  1211. name = "plotters"
  1212. version = "0.3.1"
  1213. source = "registry+https://github.com/rust-lang/crates.io-index"
  1214. checksum = "32a3fd9ec30b9749ce28cd91f255d569591cdf937fe280c312143e3c4bad6f2a"
  1215. dependencies = [
  1216. "num-traits",
  1217. "plotters-backend",
  1218. "plotters-svg",
  1219. "wasm-bindgen",
  1220. "web-sys",
  1221. ]
  1222. [[package]]
  1223. name = "plotters-backend"
  1224. version = "0.3.2"
  1225. source = "registry+https://github.com/rust-lang/crates.io-index"
  1226. checksum = "d88417318da0eaf0fdcdb51a0ee6c3bed624333bff8f946733049380be67ac1c"
  1227. [[package]]
  1228. name = "plotters-svg"
  1229. version = "0.3.1"
  1230. source = "registry+https://github.com/rust-lang/crates.io-index"
  1231. checksum = "521fa9638fa597e1dc53e9412a4f9cefb01187ee1f7413076f9e6749e2885ba9"
  1232. dependencies = [
  1233. "plotters-backend",
  1234. ]
  1235. [[package]]
  1236. name = "pprof"
  1237. version = "0.4.5"
  1238. source = "registry+https://github.com/rust-lang/crates.io-index"
  1239. checksum = "d78fcdebc1569625891b4fefed7ece660af53082529d03d9c6e8d01b3880ab92"
  1240. dependencies = [
  1241. "backtrace",
  1242. "criterion",
  1243. "inferno",
  1244. "lazy_static",
  1245. "libc",
  1246. "log",
  1247. "nix",
  1248. "parking_lot 0.11.2",
  1249. "symbolic-demangle",
  1250. "tempfile",
  1251. "thiserror",
  1252. ]
  1253. [[package]]
  1254. name = "ppv-lite86"
  1255. version = "0.2.16"
  1256. source = "registry+https://github.com/rust-lang/crates.io-index"
  1257. checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
  1258. [[package]]
  1259. name = "proc-macro2"
  1260. version = "1.0.37"
  1261. source = "registry+https://github.com/rust-lang/crates.io-index"
  1262. checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1"
  1263. dependencies = [
  1264. "unicode-xid",
  1265. ]
  1266. [[package]]
  1267. name = "quick-xml"
  1268. version = "0.22.0"
  1269. source = "registry+https://github.com/rust-lang/crates.io-index"
  1270. checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
  1271. dependencies = [
  1272. "memchr",
  1273. ]
  1274. [[package]]
  1275. name = "quote"
  1276. version = "1.0.18"
  1277. source = "registry+https://github.com/rust-lang/crates.io-index"
  1278. checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
  1279. dependencies = [
  1280. "proc-macro2",
  1281. ]
  1282. [[package]]
  1283. name = "rand"
  1284. version = "0.8.5"
  1285. source = "registry+https://github.com/rust-lang/crates.io-index"
  1286. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  1287. dependencies = [
  1288. "libc",
  1289. "rand_chacha",
  1290. "rand_core",
  1291. ]
  1292. [[package]]
  1293. name = "rand_chacha"
  1294. version = "0.3.1"
  1295. source = "registry+https://github.com/rust-lang/crates.io-index"
  1296. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  1297. dependencies = [
  1298. "ppv-lite86",
  1299. "rand_core",
  1300. ]
  1301. [[package]]
  1302. name = "rand_core"
  1303. version = "0.6.3"
  1304. source = "registry+https://github.com/rust-lang/crates.io-index"
  1305. checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
  1306. dependencies = [
  1307. "getrandom",
  1308. ]
  1309. [[package]]
  1310. name = "rayon"
  1311. version = "1.5.2"
  1312. source = "registry+https://github.com/rust-lang/crates.io-index"
  1313. checksum = "fd249e82c21598a9a426a4e00dd7adc1d640b22445ec8545feef801d1a74c221"
  1314. dependencies = [
  1315. "autocfg",
  1316. "crossbeam-deque",
  1317. "either",
  1318. "rayon-core",
  1319. ]
  1320. [[package]]
  1321. name = "rayon-core"
  1322. version = "1.9.2"
  1323. source = "registry+https://github.com/rust-lang/crates.io-index"
  1324. checksum = "9f51245e1e62e1f1629cbfec37b5793bbabcaeb90f30e94d2ba03564687353e4"
  1325. dependencies = [
  1326. "crossbeam-channel",
  1327. "crossbeam-deque",
  1328. "crossbeam-utils",
  1329. "num_cpus",
  1330. ]
  1331. [[package]]
  1332. name = "redox_syscall"
  1333. version = "0.2.13"
  1334. source = "registry+https://github.com/rust-lang/crates.io-index"
  1335. checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
  1336. dependencies = [
  1337. "bitflags",
  1338. ]
  1339. [[package]]
  1340. name = "regex"
  1341. version = "1.5.5"
  1342. source = "registry+https://github.com/rust-lang/crates.io-index"
  1343. checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
  1344. dependencies = [
  1345. "aho-corasick",
  1346. "memchr",
  1347. "regex-syntax",
  1348. ]
  1349. [[package]]
  1350. name = "regex-automata"
  1351. version = "0.1.10"
  1352. source = "registry+https://github.com/rust-lang/crates.io-index"
  1353. checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
  1354. [[package]]
  1355. name = "regex-syntax"
  1356. version = "0.6.25"
  1357. source = "registry+https://github.com/rust-lang/crates.io-index"
  1358. checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
  1359. [[package]]
  1360. name = "remove_dir_all"
  1361. version = "0.5.3"
  1362. source = "registry+https://github.com/rust-lang/crates.io-index"
  1363. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  1364. dependencies = [
  1365. "winapi",
  1366. ]
  1367. [[package]]
  1368. name = "reqwest"
  1369. version = "0.11.10"
  1370. source = "registry+https://github.com/rust-lang/crates.io-index"
  1371. checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
  1372. dependencies = [
  1373. "base64",
  1374. "bytes",
  1375. "encoding_rs",
  1376. "futures-core",
  1377. "futures-util",
  1378. "h2",
  1379. "http",
  1380. "http-body",
  1381. "hyper",
  1382. "hyper-tls",
  1383. "ipnet",
  1384. "js-sys",
  1385. "lazy_static",
  1386. "log",
  1387. "mime",
  1388. "native-tls",
  1389. "percent-encoding",
  1390. "pin-project-lite",
  1391. "serde",
  1392. "serde_json",
  1393. "serde_urlencoded",
  1394. "tokio",
  1395. "tokio-native-tls",
  1396. "url",
  1397. "wasm-bindgen",
  1398. "wasm-bindgen-futures",
  1399. "web-sys",
  1400. "winreg",
  1401. ]
  1402. [[package]]
  1403. name = "rgb"
  1404. version = "0.8.32"
  1405. source = "registry+https://github.com/rust-lang/crates.io-index"
  1406. checksum = "e74fdc210d8f24a7dbfedc13b04ba5764f5232754ccebfdf5fff1bad791ccbc6"
  1407. dependencies = [
  1408. "bytemuck",
  1409. ]
  1410. [[package]]
  1411. name = "rustc-demangle"
  1412. version = "0.1.21"
  1413. source = "registry+https://github.com/rust-lang/crates.io-index"
  1414. checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
  1415. [[package]]
  1416. name = "rustc_version"
  1417. version = "0.4.0"
  1418. source = "registry+https://github.com/rust-lang/crates.io-index"
  1419. checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
  1420. dependencies = [
  1421. "semver",
  1422. ]
  1423. [[package]]
  1424. name = "ryu"
  1425. version = "1.0.9"
  1426. source = "registry+https://github.com/rust-lang/crates.io-index"
  1427. checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
  1428. [[package]]
  1429. name = "same-file"
  1430. version = "1.0.6"
  1431. source = "registry+https://github.com/rust-lang/crates.io-index"
  1432. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  1433. dependencies = [
  1434. "winapi-util",
  1435. ]
  1436. [[package]]
  1437. name = "schannel"
  1438. version = "0.1.19"
  1439. source = "registry+https://github.com/rust-lang/crates.io-index"
  1440. checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
  1441. dependencies = [
  1442. "lazy_static",
  1443. "winapi",
  1444. ]
  1445. [[package]]
  1446. name = "scopeguard"
  1447. version = "1.1.0"
  1448. source = "registry+https://github.com/rust-lang/crates.io-index"
  1449. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  1450. [[package]]
  1451. name = "security-framework"
  1452. version = "2.6.1"
  1453. source = "registry+https://github.com/rust-lang/crates.io-index"
  1454. checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
  1455. dependencies = [
  1456. "bitflags",
  1457. "core-foundation",
  1458. "core-foundation-sys",
  1459. "libc",
  1460. "security-framework-sys",
  1461. ]
  1462. [[package]]
  1463. name = "security-framework-sys"
  1464. version = "2.6.1"
  1465. source = "registry+https://github.com/rust-lang/crates.io-index"
  1466. checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
  1467. dependencies = [
  1468. "core-foundation-sys",
  1469. "libc",
  1470. ]
  1471. [[package]]
  1472. name = "semver"
  1473. version = "1.0.7"
  1474. source = "registry+https://github.com/rust-lang/crates.io-index"
  1475. checksum = "d65bd28f48be7196d222d95b9243287f48d27aca604e08497513019ff0502cc4"
  1476. [[package]]
  1477. name = "serde"
  1478. version = "1.0.137"
  1479. source = "registry+https://github.com/rust-lang/crates.io-index"
  1480. checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
  1481. dependencies = [
  1482. "serde_derive",
  1483. ]
  1484. [[package]]
  1485. name = "serde_cbor"
  1486. version = "0.11.2"
  1487. source = "registry+https://github.com/rust-lang/crates.io-index"
  1488. checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
  1489. dependencies = [
  1490. "half",
  1491. "serde",
  1492. ]
  1493. [[package]]
  1494. name = "serde_derive"
  1495. version = "1.0.137"
  1496. source = "registry+https://github.com/rust-lang/crates.io-index"
  1497. checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
  1498. dependencies = [
  1499. "proc-macro2",
  1500. "quote",
  1501. "syn",
  1502. ]
  1503. [[package]]
  1504. name = "serde_json"
  1505. version = "1.0.80"
  1506. source = "registry+https://github.com/rust-lang/crates.io-index"
  1507. checksum = "f972498cf015f7c0746cac89ebe1d6ef10c293b94175a243a2d9442c163d9944"
  1508. dependencies = [
  1509. "itoa 1.0.1",
  1510. "ryu",
  1511. "serde",
  1512. ]
  1513. [[package]]
  1514. name = "serde_urlencoded"
  1515. version = "0.7.1"
  1516. source = "registry+https://github.com/rust-lang/crates.io-index"
  1517. checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
  1518. dependencies = [
  1519. "form_urlencoded",
  1520. "itoa 1.0.1",
  1521. "ryu",
  1522. "serde",
  1523. ]
  1524. [[package]]
  1525. name = "sha-1"
  1526. version = "0.10.0"
  1527. source = "registry+https://github.com/rust-lang/crates.io-index"
  1528. checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
  1529. dependencies = [
  1530. "cfg-if",
  1531. "cpufeatures",
  1532. "digest",
  1533. ]
  1534. [[package]]
  1535. name = "signal-hook-registry"
  1536. version = "1.4.0"
  1537. source = "registry+https://github.com/rust-lang/crates.io-index"
  1538. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  1539. dependencies = [
  1540. "libc",
  1541. ]
  1542. [[package]]
  1543. name = "slab"
  1544. version = "0.4.6"
  1545. source = "registry+https://github.com/rust-lang/crates.io-index"
  1546. checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
  1547. [[package]]
  1548. name = "smallvec"
  1549. version = "1.8.0"
  1550. source = "registry+https://github.com/rust-lang/crates.io-index"
  1551. checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
  1552. [[package]]
  1553. name = "socket2"
  1554. version = "0.4.4"
  1555. source = "registry+https://github.com/rust-lang/crates.io-index"
  1556. checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
  1557. dependencies = [
  1558. "libc",
  1559. "winapi",
  1560. ]
  1561. [[package]]
  1562. name = "spiral-rs"
  1563. version = "0.1.0"
  1564. dependencies = [
  1565. "actix-cors",
  1566. "actix-http",
  1567. "actix-server",
  1568. "actix-service",
  1569. "actix-web",
  1570. "criterion",
  1571. "futures",
  1572. "getrandom",
  1573. "pprof",
  1574. "rand",
  1575. "rand_chacha",
  1576. "rayon",
  1577. "reqwest",
  1578. "serde",
  1579. "serde_json",
  1580. "thread_local",
  1581. "uuid 1.0.0",
  1582. ]
  1583. [[package]]
  1584. name = "stable_deref_trait"
  1585. version = "1.2.0"
  1586. source = "registry+https://github.com/rust-lang/crates.io-index"
  1587. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  1588. [[package]]
  1589. name = "str_stack"
  1590. version = "0.1.0"
  1591. source = "registry+https://github.com/rust-lang/crates.io-index"
  1592. checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
  1593. [[package]]
  1594. name = "symbolic-common"
  1595. version = "8.7.0"
  1596. source = "registry+https://github.com/rust-lang/crates.io-index"
  1597. checksum = "ac6aac7b803adc9ee75344af7681969f76d4b38e4723c6eaacf3b28f5f1d87ff"
  1598. dependencies = [
  1599. "debugid",
  1600. "memmap2",
  1601. "stable_deref_trait",
  1602. "uuid 0.8.2",
  1603. ]
  1604. [[package]]
  1605. name = "symbolic-demangle"
  1606. version = "8.7.0"
  1607. source = "registry+https://github.com/rust-lang/crates.io-index"
  1608. checksum = "8143ea5aa546f86c64f9b9aafdd14223ffad4ecd2d58575c63c21335909c99a7"
  1609. dependencies = [
  1610. "cpp_demangle",
  1611. "rustc-demangle",
  1612. "symbolic-common",
  1613. ]
  1614. [[package]]
  1615. name = "syn"
  1616. version = "1.0.92"
  1617. source = "registry+https://github.com/rust-lang/crates.io-index"
  1618. checksum = "7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52"
  1619. dependencies = [
  1620. "proc-macro2",
  1621. "quote",
  1622. "unicode-xid",
  1623. ]
  1624. [[package]]
  1625. name = "tempfile"
  1626. version = "3.3.0"
  1627. source = "registry+https://github.com/rust-lang/crates.io-index"
  1628. checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
  1629. dependencies = [
  1630. "cfg-if",
  1631. "fastrand",
  1632. "libc",
  1633. "redox_syscall",
  1634. "remove_dir_all",
  1635. "winapi",
  1636. ]
  1637. [[package]]
  1638. name = "textwrap"
  1639. version = "0.11.0"
  1640. source = "registry+https://github.com/rust-lang/crates.io-index"
  1641. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  1642. dependencies = [
  1643. "unicode-width",
  1644. ]
  1645. [[package]]
  1646. name = "thiserror"
  1647. version = "1.0.31"
  1648. source = "registry+https://github.com/rust-lang/crates.io-index"
  1649. checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
  1650. dependencies = [
  1651. "thiserror-impl",
  1652. ]
  1653. [[package]]
  1654. name = "thiserror-impl"
  1655. version = "1.0.31"
  1656. source = "registry+https://github.com/rust-lang/crates.io-index"
  1657. checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
  1658. dependencies = [
  1659. "proc-macro2",
  1660. "quote",
  1661. "syn",
  1662. ]
  1663. [[package]]
  1664. name = "thread_local"
  1665. version = "1.1.4"
  1666. source = "registry+https://github.com/rust-lang/crates.io-index"
  1667. checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
  1668. dependencies = [
  1669. "once_cell",
  1670. ]
  1671. [[package]]
  1672. name = "time"
  1673. version = "0.3.9"
  1674. source = "registry+https://github.com/rust-lang/crates.io-index"
  1675. checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd"
  1676. dependencies = [
  1677. "itoa 1.0.1",
  1678. "libc",
  1679. "num_threads",
  1680. "time-macros",
  1681. ]
  1682. [[package]]
  1683. name = "time-macros"
  1684. version = "0.2.4"
  1685. source = "registry+https://github.com/rust-lang/crates.io-index"
  1686. checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
  1687. [[package]]
  1688. name = "tinytemplate"
  1689. version = "1.2.1"
  1690. source = "registry+https://github.com/rust-lang/crates.io-index"
  1691. checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
  1692. dependencies = [
  1693. "serde",
  1694. "serde_json",
  1695. ]
  1696. [[package]]
  1697. name = "tinyvec"
  1698. version = "1.6.0"
  1699. source = "registry+https://github.com/rust-lang/crates.io-index"
  1700. checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
  1701. dependencies = [
  1702. "tinyvec_macros",
  1703. ]
  1704. [[package]]
  1705. name = "tinyvec_macros"
  1706. version = "0.1.0"
  1707. source = "registry+https://github.com/rust-lang/crates.io-index"
  1708. checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
  1709. [[package]]
  1710. name = "tokio"
  1711. version = "1.18.0"
  1712. source = "registry+https://github.com/rust-lang/crates.io-index"
  1713. checksum = "0f48b6d60512a392e34dbf7fd456249fd2de3c83669ab642e021903f4015185b"
  1714. dependencies = [
  1715. "bytes",
  1716. "libc",
  1717. "memchr",
  1718. "mio",
  1719. "num_cpus",
  1720. "once_cell",
  1721. "parking_lot 0.12.0",
  1722. "pin-project-lite",
  1723. "signal-hook-registry",
  1724. "socket2",
  1725. "winapi",
  1726. ]
  1727. [[package]]
  1728. name = "tokio-native-tls"
  1729. version = "0.3.0"
  1730. source = "registry+https://github.com/rust-lang/crates.io-index"
  1731. checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
  1732. dependencies = [
  1733. "native-tls",
  1734. "tokio",
  1735. ]
  1736. [[package]]
  1737. name = "tokio-util"
  1738. version = "0.7.1"
  1739. source = "registry+https://github.com/rust-lang/crates.io-index"
  1740. checksum = "0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764"
  1741. dependencies = [
  1742. "bytes",
  1743. "futures-core",
  1744. "futures-sink",
  1745. "pin-project-lite",
  1746. "tokio",
  1747. "tracing",
  1748. ]
  1749. [[package]]
  1750. name = "tower-service"
  1751. version = "0.3.1"
  1752. source = "registry+https://github.com/rust-lang/crates.io-index"
  1753. checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
  1754. [[package]]
  1755. name = "tracing"
  1756. version = "0.1.34"
  1757. source = "registry+https://github.com/rust-lang/crates.io-index"
  1758. checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
  1759. dependencies = [
  1760. "cfg-if",
  1761. "log",
  1762. "pin-project-lite",
  1763. "tracing-attributes",
  1764. "tracing-core",
  1765. ]
  1766. [[package]]
  1767. name = "tracing-attributes"
  1768. version = "0.1.21"
  1769. source = "registry+https://github.com/rust-lang/crates.io-index"
  1770. checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
  1771. dependencies = [
  1772. "proc-macro2",
  1773. "quote",
  1774. "syn",
  1775. ]
  1776. [[package]]
  1777. name = "tracing-core"
  1778. version = "0.1.26"
  1779. source = "registry+https://github.com/rust-lang/crates.io-index"
  1780. checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
  1781. dependencies = [
  1782. "lazy_static",
  1783. ]
  1784. [[package]]
  1785. name = "try-lock"
  1786. version = "0.2.3"
  1787. source = "registry+https://github.com/rust-lang/crates.io-index"
  1788. checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
  1789. [[package]]
  1790. name = "typenum"
  1791. version = "1.15.0"
  1792. source = "registry+https://github.com/rust-lang/crates.io-index"
  1793. checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
  1794. [[package]]
  1795. name = "unicode-bidi"
  1796. version = "0.3.8"
  1797. source = "registry+https://github.com/rust-lang/crates.io-index"
  1798. checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
  1799. [[package]]
  1800. name = "unicode-normalization"
  1801. version = "0.1.19"
  1802. source = "registry+https://github.com/rust-lang/crates.io-index"
  1803. checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
  1804. dependencies = [
  1805. "tinyvec",
  1806. ]
  1807. [[package]]
  1808. name = "unicode-width"
  1809. version = "0.1.9"
  1810. source = "registry+https://github.com/rust-lang/crates.io-index"
  1811. checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
  1812. [[package]]
  1813. name = "unicode-xid"
  1814. version = "0.2.2"
  1815. source = "registry+https://github.com/rust-lang/crates.io-index"
  1816. checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
  1817. [[package]]
  1818. name = "url"
  1819. version = "2.2.2"
  1820. source = "registry+https://github.com/rust-lang/crates.io-index"
  1821. checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
  1822. dependencies = [
  1823. "form_urlencoded",
  1824. "idna",
  1825. "matches",
  1826. "percent-encoding",
  1827. ]
  1828. [[package]]
  1829. name = "uuid"
  1830. version = "0.8.2"
  1831. source = "registry+https://github.com/rust-lang/crates.io-index"
  1832. checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
  1833. [[package]]
  1834. name = "uuid"
  1835. version = "1.0.0"
  1836. source = "registry+https://github.com/rust-lang/crates.io-index"
  1837. checksum = "8cfcd319456c4d6ea10087ed423473267e1a071f3bc0aa89f80d60997843c6f0"
  1838. dependencies = [
  1839. "getrandom",
  1840. ]
  1841. [[package]]
  1842. name = "vcpkg"
  1843. version = "0.2.15"
  1844. source = "registry+https://github.com/rust-lang/crates.io-index"
  1845. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  1846. [[package]]
  1847. name = "version_check"
  1848. version = "0.9.4"
  1849. source = "registry+https://github.com/rust-lang/crates.io-index"
  1850. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  1851. [[package]]
  1852. name = "walkdir"
  1853. version = "2.3.2"
  1854. source = "registry+https://github.com/rust-lang/crates.io-index"
  1855. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  1856. dependencies = [
  1857. "same-file",
  1858. "winapi",
  1859. "winapi-util",
  1860. ]
  1861. [[package]]
  1862. name = "want"
  1863. version = "0.3.0"
  1864. source = "registry+https://github.com/rust-lang/crates.io-index"
  1865. checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
  1866. dependencies = [
  1867. "log",
  1868. "try-lock",
  1869. ]
  1870. [[package]]
  1871. name = "wasi"
  1872. version = "0.10.2+wasi-snapshot-preview1"
  1873. source = "registry+https://github.com/rust-lang/crates.io-index"
  1874. checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
  1875. [[package]]
  1876. name = "wasi"
  1877. version = "0.11.0+wasi-snapshot-preview1"
  1878. source = "registry+https://github.com/rust-lang/crates.io-index"
  1879. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1880. [[package]]
  1881. name = "wasm-bindgen"
  1882. version = "0.2.80"
  1883. source = "registry+https://github.com/rust-lang/crates.io-index"
  1884. checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
  1885. dependencies = [
  1886. "cfg-if",
  1887. "wasm-bindgen-macro",
  1888. ]
  1889. [[package]]
  1890. name = "wasm-bindgen-backend"
  1891. version = "0.2.80"
  1892. source = "registry+https://github.com/rust-lang/crates.io-index"
  1893. checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
  1894. dependencies = [
  1895. "bumpalo",
  1896. "lazy_static",
  1897. "log",
  1898. "proc-macro2",
  1899. "quote",
  1900. "syn",
  1901. "wasm-bindgen-shared",
  1902. ]
  1903. [[package]]
  1904. name = "wasm-bindgen-futures"
  1905. version = "0.4.30"
  1906. source = "registry+https://github.com/rust-lang/crates.io-index"
  1907. checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
  1908. dependencies = [
  1909. "cfg-if",
  1910. "js-sys",
  1911. "wasm-bindgen",
  1912. "web-sys",
  1913. ]
  1914. [[package]]
  1915. name = "wasm-bindgen-macro"
  1916. version = "0.2.80"
  1917. source = "registry+https://github.com/rust-lang/crates.io-index"
  1918. checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
  1919. dependencies = [
  1920. "quote",
  1921. "wasm-bindgen-macro-support",
  1922. ]
  1923. [[package]]
  1924. name = "wasm-bindgen-macro-support"
  1925. version = "0.2.80"
  1926. source = "registry+https://github.com/rust-lang/crates.io-index"
  1927. checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
  1928. dependencies = [
  1929. "proc-macro2",
  1930. "quote",
  1931. "syn",
  1932. "wasm-bindgen-backend",
  1933. "wasm-bindgen-shared",
  1934. ]
  1935. [[package]]
  1936. name = "wasm-bindgen-shared"
  1937. version = "0.2.80"
  1938. source = "registry+https://github.com/rust-lang/crates.io-index"
  1939. checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
  1940. [[package]]
  1941. name = "web-sys"
  1942. version = "0.3.57"
  1943. source = "registry+https://github.com/rust-lang/crates.io-index"
  1944. checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
  1945. dependencies = [
  1946. "js-sys",
  1947. "wasm-bindgen",
  1948. ]
  1949. [[package]]
  1950. name = "winapi"
  1951. version = "0.3.9"
  1952. source = "registry+https://github.com/rust-lang/crates.io-index"
  1953. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1954. dependencies = [
  1955. "winapi-i686-pc-windows-gnu",
  1956. "winapi-x86_64-pc-windows-gnu",
  1957. ]
  1958. [[package]]
  1959. name = "winapi-i686-pc-windows-gnu"
  1960. version = "0.4.0"
  1961. source = "registry+https://github.com/rust-lang/crates.io-index"
  1962. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1963. [[package]]
  1964. name = "winapi-util"
  1965. version = "0.1.5"
  1966. source = "registry+https://github.com/rust-lang/crates.io-index"
  1967. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  1968. dependencies = [
  1969. "winapi",
  1970. ]
  1971. [[package]]
  1972. name = "winapi-x86_64-pc-windows-gnu"
  1973. version = "0.4.0"
  1974. source = "registry+https://github.com/rust-lang/crates.io-index"
  1975. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1976. [[package]]
  1977. name = "windows-sys"
  1978. version = "0.36.1"
  1979. source = "registry+https://github.com/rust-lang/crates.io-index"
  1980. checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
  1981. dependencies = [
  1982. "windows_aarch64_msvc",
  1983. "windows_i686_gnu",
  1984. "windows_i686_msvc",
  1985. "windows_x86_64_gnu",
  1986. "windows_x86_64_msvc",
  1987. ]
  1988. [[package]]
  1989. name = "windows_aarch64_msvc"
  1990. version = "0.36.1"
  1991. source = "registry+https://github.com/rust-lang/crates.io-index"
  1992. checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
  1993. [[package]]
  1994. name = "windows_i686_gnu"
  1995. version = "0.36.1"
  1996. source = "registry+https://github.com/rust-lang/crates.io-index"
  1997. checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
  1998. [[package]]
  1999. name = "windows_i686_msvc"
  2000. version = "0.36.1"
  2001. source = "registry+https://github.com/rust-lang/crates.io-index"
  2002. checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
  2003. [[package]]
  2004. name = "windows_x86_64_gnu"
  2005. version = "0.36.1"
  2006. source = "registry+https://github.com/rust-lang/crates.io-index"
  2007. checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
  2008. [[package]]
  2009. name = "windows_x86_64_msvc"
  2010. version = "0.36.1"
  2011. source = "registry+https://github.com/rust-lang/crates.io-index"
  2012. checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
  2013. [[package]]
  2014. name = "winreg"
  2015. version = "0.10.1"
  2016. source = "registry+https://github.com/rust-lang/crates.io-index"
  2017. checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
  2018. dependencies = [
  2019. "winapi",
  2020. ]
  2021. [[package]]
  2022. name = "zstd"
  2023. version = "0.10.0+zstd.1.5.2"
  2024. source = "registry+https://github.com/rust-lang/crates.io-index"
  2025. checksum = "3b1365becbe415f3f0fcd024e2f7b45bacfb5bdd055f0dc113571394114e7bdd"
  2026. dependencies = [
  2027. "zstd-safe",
  2028. ]
  2029. [[package]]
  2030. name = "zstd-safe"
  2031. version = "4.1.4+zstd.1.5.2"
  2032. source = "registry+https://github.com/rust-lang/crates.io-index"
  2033. checksum = "2f7cd17c9af1a4d6c24beb1cc54b17e2ef7b593dc92f19e9d9acad8b182bbaee"
  2034. dependencies = [
  2035. "libc",
  2036. "zstd-sys",
  2037. ]
  2038. [[package]]
  2039. name = "zstd-sys"
  2040. version = "1.6.3+zstd.1.5.2"
  2041. source = "registry+https://github.com/rust-lang/crates.io-index"
  2042. checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
  2043. dependencies = [
  2044. "cc",
  2045. "libc",
  2046. ]