Cargo.lock 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "actix-codec"
  5. version = "0.2.0"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "09e55f0a5c2ca15795035d90c46bd0e73a5123b72f68f12596d6ba5282051380"
  8. dependencies = [
  9. "bitflags",
  10. "bytes",
  11. "futures-core",
  12. "futures-sink",
  13. "log",
  14. "tokio",
  15. "tokio-util 0.2.0",
  16. ]
  17. [[package]]
  18. name = "actix-connect"
  19. version = "1.0.2"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "c95cc9569221e9802bf4c377f6c18b90ef10227d787611decf79fd47d2a8e76c"
  22. dependencies = [
  23. "actix-codec",
  24. "actix-rt",
  25. "actix-service",
  26. "actix-utils",
  27. "derive_more",
  28. "either",
  29. "futures",
  30. "http",
  31. "log",
  32. "trust-dns-proto",
  33. "trust-dns-resolver",
  34. ]
  35. [[package]]
  36. name = "actix-http"
  37. version = "1.0.1"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "c16664cc4fdea8030837ad5a845eb231fb93fc3c5c171edfefb52fad92ce9019"
  40. dependencies = [
  41. "actix-codec",
  42. "actix-connect",
  43. "actix-rt",
  44. "actix-service",
  45. "actix-threadpool",
  46. "actix-utils",
  47. "base64",
  48. "bitflags",
  49. "brotli2",
  50. "bytes",
  51. "chrono",
  52. "copyless",
  53. "derive_more",
  54. "either",
  55. "encoding_rs",
  56. "failure",
  57. "flate2",
  58. "futures-channel",
  59. "futures-core",
  60. "futures-util",
  61. "fxhash",
  62. "h2",
  63. "http",
  64. "httparse",
  65. "indexmap",
  66. "language-tags",
  67. "lazy_static",
  68. "log",
  69. "mime",
  70. "percent-encoding",
  71. "pin-project",
  72. "rand",
  73. "regex",
  74. "serde",
  75. "serde_json",
  76. "serde_urlencoded",
  77. "sha1",
  78. "slab",
  79. "time",
  80. ]
  81. [[package]]
  82. name = "actix-macros"
  83. version = "0.1.2"
  84. source = "registry+https://github.com/rust-lang/crates.io-index"
  85. checksum = "a60f9ba7c4e6df97f3aacb14bb5c0cd7d98a49dcbaed0d7f292912ad9a6a3ed2"
  86. dependencies = [
  87. "quote",
  88. "syn",
  89. ]
  90. [[package]]
  91. name = "actix-router"
  92. version = "0.2.4"
  93. source = "registry+https://github.com/rust-lang/crates.io-index"
  94. checksum = "9d7a10ca4d94e8c8e7a87c5173aba1b97ba9a6563ca02b0e1cd23531093d3ec8"
  95. dependencies = [
  96. "bytestring",
  97. "http",
  98. "log",
  99. "regex",
  100. "serde",
  101. ]
  102. [[package]]
  103. name = "actix-rt"
  104. version = "1.1.1"
  105. source = "registry+https://github.com/rust-lang/crates.io-index"
  106. checksum = "143fcc2912e0d1de2bcf4e2f720d2a60c28652ab4179685a1ee159e0fb3db227"
  107. dependencies = [
  108. "actix-macros",
  109. "actix-threadpool",
  110. "copyless",
  111. "futures-channel",
  112. "futures-util",
  113. "smallvec",
  114. "tokio",
  115. ]
  116. [[package]]
  117. name = "actix-server"
  118. version = "1.0.3"
  119. source = "registry+https://github.com/rust-lang/crates.io-index"
  120. checksum = "e6d74b464215a473c973a2d7d03a69cc10f4ce1f4b38a7659c5193dc5c675630"
  121. dependencies = [
  122. "actix-codec",
  123. "actix-rt",
  124. "actix-service",
  125. "actix-utils",
  126. "futures-channel",
  127. "futures-util",
  128. "log",
  129. "mio",
  130. "mio-uds",
  131. "num_cpus",
  132. "slab",
  133. "socket2",
  134. ]
  135. [[package]]
  136. name = "actix-service"
  137. version = "1.0.5"
  138. source = "registry+https://github.com/rust-lang/crates.io-index"
  139. checksum = "d3e4fc95dfa7e24171b2d0bb46b85f8ab0e8499e4e3caec691fc4ea65c287564"
  140. dependencies = [
  141. "futures-util",
  142. "pin-project",
  143. ]
  144. [[package]]
  145. name = "actix-testing"
  146. version = "1.0.1"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "47239ca38799ab74ee6a8a94d1ce857014b2ac36f242f70f3f75a66f691e791c"
  149. dependencies = [
  150. "actix-macros",
  151. "actix-rt",
  152. "actix-server",
  153. "actix-service",
  154. "log",
  155. "socket2",
  156. ]
  157. [[package]]
  158. name = "actix-threadpool"
  159. version = "0.3.3"
  160. source = "registry+https://github.com/rust-lang/crates.io-index"
  161. checksum = "d209f04d002854b9afd3743032a27b066158817965bf5d036824d19ac2cc0e30"
  162. dependencies = [
  163. "derive_more",
  164. "futures-channel",
  165. "lazy_static",
  166. "log",
  167. "num_cpus",
  168. "parking_lot",
  169. "threadpool",
  170. ]
  171. [[package]]
  172. name = "actix-tls"
  173. version = "1.0.0"
  174. source = "registry+https://github.com/rust-lang/crates.io-index"
  175. checksum = "a4e5b4faaf105e9a6d389c606c298dcdb033061b00d532af9df56ff3a54995a8"
  176. dependencies = [
  177. "actix-codec",
  178. "actix-rt",
  179. "actix-service",
  180. "actix-utils",
  181. "derive_more",
  182. "either",
  183. "futures",
  184. "log",
  185. ]
  186. [[package]]
  187. name = "actix-utils"
  188. version = "1.0.6"
  189. source = "registry+https://github.com/rust-lang/crates.io-index"
  190. checksum = "fcf8f5631bf01adec2267808f00e228b761c60c0584cc9fa0b5364f41d147f4e"
  191. dependencies = [
  192. "actix-codec",
  193. "actix-rt",
  194. "actix-service",
  195. "bitflags",
  196. "bytes",
  197. "either",
  198. "futures",
  199. "log",
  200. "pin-project",
  201. "slab",
  202. ]
  203. [[package]]
  204. name = "actix-web"
  205. version = "2.0.0"
  206. source = "registry+https://github.com/rust-lang/crates.io-index"
  207. checksum = "3158e822461040822f0dbf1735b9c2ce1f95f93b651d7a7aded00b1efbb1f635"
  208. dependencies = [
  209. "actix-codec",
  210. "actix-http",
  211. "actix-macros",
  212. "actix-router",
  213. "actix-rt",
  214. "actix-server",
  215. "actix-service",
  216. "actix-testing",
  217. "actix-threadpool",
  218. "actix-tls",
  219. "actix-utils",
  220. "actix-web-codegen",
  221. "awc",
  222. "bytes",
  223. "derive_more",
  224. "encoding_rs",
  225. "futures",
  226. "fxhash",
  227. "log",
  228. "mime",
  229. "net2",
  230. "pin-project",
  231. "regex",
  232. "serde",
  233. "serde_json",
  234. "serde_urlencoded",
  235. "time",
  236. "url",
  237. ]
  238. [[package]]
  239. name = "actix-web-codegen"
  240. version = "0.2.2"
  241. source = "registry+https://github.com/rust-lang/crates.io-index"
  242. checksum = "a71bf475cbe07281d0b3696abb48212db118e7e23219f13596ce865235ff5766"
  243. dependencies = [
  244. "proc-macro2",
  245. "quote",
  246. "syn",
  247. ]
  248. [[package]]
  249. name = "addr2line"
  250. version = "0.13.0"
  251. source = "registry+https://github.com/rust-lang/crates.io-index"
  252. checksum = "1b6a2d3371669ab3ca9797670853d61402b03d0b4b9ebf33d677dfa720203072"
  253. dependencies = [
  254. "gimli",
  255. ]
  256. [[package]]
  257. name = "adler"
  258. version = "0.2.3"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
  261. [[package]]
  262. name = "aho-corasick"
  263. version = "0.7.13"
  264. source = "registry+https://github.com/rust-lang/crates.io-index"
  265. checksum = "043164d8ba5c4c3035fec9bbee8647c0261d788f3474306f93bb65901cae0e86"
  266. dependencies = [
  267. "memchr",
  268. ]
  269. [[package]]
  270. name = "arc-swap"
  271. version = "0.4.7"
  272. source = "registry+https://github.com/rust-lang/crates.io-index"
  273. checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
  274. [[package]]
  275. name = "async-trait"
  276. version = "0.1.36"
  277. source = "registry+https://github.com/rust-lang/crates.io-index"
  278. checksum = "a265e3abeffdce30b2e26b7a11b222fe37c6067404001b434101457d0385eb92"
  279. dependencies = [
  280. "proc-macro2",
  281. "quote",
  282. "syn",
  283. ]
  284. [[package]]
  285. name = "atty"
  286. version = "0.2.14"
  287. source = "registry+https://github.com/rust-lang/crates.io-index"
  288. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  289. dependencies = [
  290. "hermit-abi",
  291. "libc",
  292. "winapi 0.3.9",
  293. ]
  294. [[package]]
  295. name = "autocfg"
  296. version = "1.0.0"
  297. source = "registry+https://github.com/rust-lang/crates.io-index"
  298. checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
  299. [[package]]
  300. name = "awc"
  301. version = "1.0.1"
  302. source = "registry+https://github.com/rust-lang/crates.io-index"
  303. checksum = "d7601d4d1d7ef2335d6597a41b5fe069f6ab799b85f53565ab390e7b7065aac5"
  304. dependencies = [
  305. "actix-codec",
  306. "actix-http",
  307. "actix-rt",
  308. "actix-service",
  309. "base64",
  310. "bytes",
  311. "derive_more",
  312. "futures-core",
  313. "log",
  314. "mime",
  315. "percent-encoding",
  316. "rand",
  317. "serde",
  318. "serde_json",
  319. "serde_urlencoded",
  320. ]
  321. [[package]]
  322. name = "backtrace"
  323. version = "0.3.50"
  324. source = "registry+https://github.com/rust-lang/crates.io-index"
  325. checksum = "46254cf2fdcdf1badb5934448c1bcbe046a56537b3987d96c51a7afc5d03f293"
  326. dependencies = [
  327. "addr2line",
  328. "cfg-if",
  329. "libc",
  330. "miniz_oxide",
  331. "object",
  332. "rustc-demangle",
  333. ]
  334. [[package]]
  335. name = "base64"
  336. version = "0.11.0"
  337. source = "registry+https://github.com/rust-lang/crates.io-index"
  338. checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
  339. [[package]]
  340. name = "bitflags"
  341. version = "1.2.1"
  342. source = "registry+https://github.com/rust-lang/crates.io-index"
  343. checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
  344. [[package]]
  345. name = "broadsign-rt-pop-server"
  346. version = "0.1.0"
  347. dependencies = [
  348. "actix-rt",
  349. "actix-web",
  350. "chrono",
  351. "env_logger",
  352. "log",
  353. "serde",
  354. "serde_derive",
  355. "serde_json",
  356. "serde_repr",
  357. ]
  358. [[package]]
  359. name = "brotli-sys"
  360. version = "0.3.2"
  361. source = "registry+https://github.com/rust-lang/crates.io-index"
  362. checksum = "4445dea95f4c2b41cde57cc9fee236ae4dbae88d8fcbdb4750fc1bb5d86aaecd"
  363. dependencies = [
  364. "cc",
  365. "libc",
  366. ]
  367. [[package]]
  368. name = "brotli2"
  369. version = "0.3.2"
  370. source = "registry+https://github.com/rust-lang/crates.io-index"
  371. checksum = "0cb036c3eade309815c15ddbacec5b22c4d1f3983a774ab2eac2e3e9ea85568e"
  372. dependencies = [
  373. "brotli-sys",
  374. "libc",
  375. ]
  376. [[package]]
  377. name = "byteorder"
  378. version = "1.3.4"
  379. source = "registry+https://github.com/rust-lang/crates.io-index"
  380. checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
  381. [[package]]
  382. name = "bytes"
  383. version = "0.5.6"
  384. source = "registry+https://github.com/rust-lang/crates.io-index"
  385. checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
  386. [[package]]
  387. name = "bytestring"
  388. version = "0.1.5"
  389. source = "registry+https://github.com/rust-lang/crates.io-index"
  390. checksum = "fc7c05fa5172da78a62d9949d662d2ac89d4cc7355d7b49adee5163f1fb3f363"
  391. dependencies = [
  392. "bytes",
  393. ]
  394. [[package]]
  395. name = "cc"
  396. version = "1.0.58"
  397. source = "registry+https://github.com/rust-lang/crates.io-index"
  398. checksum = "f9a06fb2e53271d7c279ec1efea6ab691c35a2ae67ec0d91d7acec0caf13b518"
  399. [[package]]
  400. name = "cfg-if"
  401. version = "0.1.10"
  402. source = "registry+https://github.com/rust-lang/crates.io-index"
  403. checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  404. [[package]]
  405. name = "chrono"
  406. version = "0.4.13"
  407. source = "registry+https://github.com/rust-lang/crates.io-index"
  408. checksum = "c74d84029116787153e02106bf53e66828452a4b325cc8652b788b5967c0a0b6"
  409. dependencies = [
  410. "num-integer",
  411. "num-traits",
  412. "serde",
  413. "time",
  414. ]
  415. [[package]]
  416. name = "cloudabi"
  417. version = "0.1.0"
  418. source = "registry+https://github.com/rust-lang/crates.io-index"
  419. checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
  420. dependencies = [
  421. "bitflags",
  422. ]
  423. [[package]]
  424. name = "copyless"
  425. version = "0.1.5"
  426. source = "registry+https://github.com/rust-lang/crates.io-index"
  427. checksum = "a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536"
  428. [[package]]
  429. name = "crc32fast"
  430. version = "1.2.0"
  431. source = "registry+https://github.com/rust-lang/crates.io-index"
  432. checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
  433. dependencies = [
  434. "cfg-if",
  435. ]
  436. [[package]]
  437. name = "derive_more"
  438. version = "0.99.9"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "298998b1cf6b5b2c8a7b023dfd45821825ce3ba8a8af55c921a0e734e4653f76"
  441. dependencies = [
  442. "proc-macro2",
  443. "quote",
  444. "syn",
  445. ]
  446. [[package]]
  447. name = "dtoa"
  448. version = "0.4.6"
  449. source = "registry+https://github.com/rust-lang/crates.io-index"
  450. checksum = "134951f4028bdadb9b84baf4232681efbf277da25144b9b0ad65df75946c422b"
  451. [[package]]
  452. name = "either"
  453. version = "1.5.3"
  454. source = "registry+https://github.com/rust-lang/crates.io-index"
  455. checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
  456. [[package]]
  457. name = "encoding_rs"
  458. version = "0.8.23"
  459. source = "registry+https://github.com/rust-lang/crates.io-index"
  460. checksum = "e8ac63f94732332f44fe654443c46f6375d1939684c17b0afb6cb56b0456e171"
  461. dependencies = [
  462. "cfg-if",
  463. ]
  464. [[package]]
  465. name = "enum-as-inner"
  466. version = "0.3.2"
  467. source = "registry+https://github.com/rust-lang/crates.io-index"
  468. checksum = "bc4bfcfacb61d231109d1d55202c1f33263319668b168843e02ad4652725ec9c"
  469. dependencies = [
  470. "heck",
  471. "proc-macro2",
  472. "quote",
  473. "syn",
  474. ]
  475. [[package]]
  476. name = "env_logger"
  477. version = "0.7.1"
  478. source = "registry+https://github.com/rust-lang/crates.io-index"
  479. checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
  480. dependencies = [
  481. "atty",
  482. "humantime",
  483. "log",
  484. "regex",
  485. "termcolor",
  486. ]
  487. [[package]]
  488. name = "failure"
  489. version = "0.1.8"
  490. source = "registry+https://github.com/rust-lang/crates.io-index"
  491. checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
  492. dependencies = [
  493. "backtrace",
  494. "failure_derive",
  495. ]
  496. [[package]]
  497. name = "failure_derive"
  498. version = "0.1.8"
  499. source = "registry+https://github.com/rust-lang/crates.io-index"
  500. checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
  501. dependencies = [
  502. "proc-macro2",
  503. "quote",
  504. "syn",
  505. "synstructure",
  506. ]
  507. [[package]]
  508. name = "flate2"
  509. version = "1.0.16"
  510. source = "registry+https://github.com/rust-lang/crates.io-index"
  511. checksum = "68c90b0fc46cf89d227cc78b40e494ff81287a92dd07631e5af0d06fe3cf885e"
  512. dependencies = [
  513. "cfg-if",
  514. "crc32fast",
  515. "libc",
  516. "miniz_oxide",
  517. ]
  518. [[package]]
  519. name = "fnv"
  520. version = "1.0.7"
  521. source = "registry+https://github.com/rust-lang/crates.io-index"
  522. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  523. [[package]]
  524. name = "fuchsia-zircon"
  525. version = "0.3.3"
  526. source = "registry+https://github.com/rust-lang/crates.io-index"
  527. checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
  528. dependencies = [
  529. "bitflags",
  530. "fuchsia-zircon-sys",
  531. ]
  532. [[package]]
  533. name = "fuchsia-zircon-sys"
  534. version = "0.3.3"
  535. source = "registry+https://github.com/rust-lang/crates.io-index"
  536. checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
  537. [[package]]
  538. name = "futures"
  539. version = "0.3.5"
  540. source = "registry+https://github.com/rust-lang/crates.io-index"
  541. checksum = "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613"
  542. dependencies = [
  543. "futures-channel",
  544. "futures-core",
  545. "futures-executor",
  546. "futures-io",
  547. "futures-sink",
  548. "futures-task",
  549. "futures-util",
  550. ]
  551. [[package]]
  552. name = "futures-channel"
  553. version = "0.3.5"
  554. source = "registry+https://github.com/rust-lang/crates.io-index"
  555. checksum = "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5"
  556. dependencies = [
  557. "futures-core",
  558. "futures-sink",
  559. ]
  560. [[package]]
  561. name = "futures-core"
  562. version = "0.3.5"
  563. source = "registry+https://github.com/rust-lang/crates.io-index"
  564. checksum = "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399"
  565. [[package]]
  566. name = "futures-executor"
  567. version = "0.3.5"
  568. source = "registry+https://github.com/rust-lang/crates.io-index"
  569. checksum = "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314"
  570. dependencies = [
  571. "futures-core",
  572. "futures-task",
  573. "futures-util",
  574. ]
  575. [[package]]
  576. name = "futures-io"
  577. version = "0.3.5"
  578. source = "registry+https://github.com/rust-lang/crates.io-index"
  579. checksum = "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789"
  580. [[package]]
  581. name = "futures-macro"
  582. version = "0.3.5"
  583. source = "registry+https://github.com/rust-lang/crates.io-index"
  584. checksum = "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39"
  585. dependencies = [
  586. "proc-macro-hack",
  587. "proc-macro2",
  588. "quote",
  589. "syn",
  590. ]
  591. [[package]]
  592. name = "futures-sink"
  593. version = "0.3.5"
  594. source = "registry+https://github.com/rust-lang/crates.io-index"
  595. checksum = "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc"
  596. [[package]]
  597. name = "futures-task"
  598. version = "0.3.5"
  599. source = "registry+https://github.com/rust-lang/crates.io-index"
  600. checksum = "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626"
  601. dependencies = [
  602. "once_cell",
  603. ]
  604. [[package]]
  605. name = "futures-util"
  606. version = "0.3.5"
  607. source = "registry+https://github.com/rust-lang/crates.io-index"
  608. checksum = "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6"
  609. dependencies = [
  610. "futures-channel",
  611. "futures-core",
  612. "futures-io",
  613. "futures-macro",
  614. "futures-sink",
  615. "futures-task",
  616. "memchr",
  617. "pin-project",
  618. "pin-utils",
  619. "proc-macro-hack",
  620. "proc-macro-nested",
  621. "slab",
  622. ]
  623. [[package]]
  624. name = "fxhash"
  625. version = "0.2.1"
  626. source = "registry+https://github.com/rust-lang/crates.io-index"
  627. checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
  628. dependencies = [
  629. "byteorder",
  630. ]
  631. [[package]]
  632. name = "getrandom"
  633. version = "0.1.14"
  634. source = "registry+https://github.com/rust-lang/crates.io-index"
  635. checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
  636. dependencies = [
  637. "cfg-if",
  638. "libc",
  639. "wasi",
  640. ]
  641. [[package]]
  642. name = "gimli"
  643. version = "0.22.0"
  644. source = "registry+https://github.com/rust-lang/crates.io-index"
  645. checksum = "aaf91faf136cb47367fa430cd46e37a788775e7fa104f8b4bcb3861dc389b724"
  646. [[package]]
  647. name = "h2"
  648. version = "0.2.6"
  649. source = "registry+https://github.com/rust-lang/crates.io-index"
  650. checksum = "993f9e0baeed60001cf565546b0d3dbe6a6ad23f2bd31644a133c641eccf6d53"
  651. dependencies = [
  652. "bytes",
  653. "fnv",
  654. "futures-core",
  655. "futures-sink",
  656. "futures-util",
  657. "http",
  658. "indexmap",
  659. "slab",
  660. "tokio",
  661. "tokio-util 0.3.1",
  662. "tracing",
  663. ]
  664. [[package]]
  665. name = "hashbrown"
  666. version = "0.8.1"
  667. source = "registry+https://github.com/rust-lang/crates.io-index"
  668. checksum = "34f595585f103464d8d2f6e9864682d74c1601fed5e07d62b1c9058dba8246fb"
  669. dependencies = [
  670. "autocfg",
  671. ]
  672. [[package]]
  673. name = "heck"
  674. version = "0.3.1"
  675. source = "registry+https://github.com/rust-lang/crates.io-index"
  676. checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
  677. dependencies = [
  678. "unicode-segmentation",
  679. ]
  680. [[package]]
  681. name = "hermit-abi"
  682. version = "0.1.15"
  683. source = "registry+https://github.com/rust-lang/crates.io-index"
  684. checksum = "3deed196b6e7f9e44a2ae8d94225d80302d81208b1bb673fd21fe634645c85a9"
  685. dependencies = [
  686. "libc",
  687. ]
  688. [[package]]
  689. name = "hostname"
  690. version = "0.3.1"
  691. source = "registry+https://github.com/rust-lang/crates.io-index"
  692. checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
  693. dependencies = [
  694. "libc",
  695. "match_cfg",
  696. "winapi 0.3.9",
  697. ]
  698. [[package]]
  699. name = "http"
  700. version = "0.2.1"
  701. source = "registry+https://github.com/rust-lang/crates.io-index"
  702. checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
  703. dependencies = [
  704. "bytes",
  705. "fnv",
  706. "itoa",
  707. ]
  708. [[package]]
  709. name = "httparse"
  710. version = "1.3.4"
  711. source = "registry+https://github.com/rust-lang/crates.io-index"
  712. checksum = "cd179ae861f0c2e53da70d892f5f3029f9594be0c41dc5269cd371691b1dc2f9"
  713. [[package]]
  714. name = "humantime"
  715. version = "1.3.0"
  716. source = "registry+https://github.com/rust-lang/crates.io-index"
  717. checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
  718. dependencies = [
  719. "quick-error",
  720. ]
  721. [[package]]
  722. name = "idna"
  723. version = "0.2.0"
  724. source = "registry+https://github.com/rust-lang/crates.io-index"
  725. checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
  726. dependencies = [
  727. "matches",
  728. "unicode-bidi",
  729. "unicode-normalization",
  730. ]
  731. [[package]]
  732. name = "indexmap"
  733. version = "1.5.0"
  734. source = "registry+https://github.com/rust-lang/crates.io-index"
  735. checksum = "5b88cd59ee5f71fea89a62248fc8f387d44400cefe05ef548466d61ced9029a7"
  736. dependencies = [
  737. "autocfg",
  738. "hashbrown",
  739. ]
  740. [[package]]
  741. name = "instant"
  742. version = "0.1.6"
  743. source = "registry+https://github.com/rust-lang/crates.io-index"
  744. checksum = "5b141fdc7836c525d4d594027d318c84161ca17aaf8113ab1f81ab93ae897485"
  745. [[package]]
  746. name = "iovec"
  747. version = "0.1.4"
  748. source = "registry+https://github.com/rust-lang/crates.io-index"
  749. checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
  750. dependencies = [
  751. "libc",
  752. ]
  753. [[package]]
  754. name = "ipconfig"
  755. version = "0.2.2"
  756. source = "registry+https://github.com/rust-lang/crates.io-index"
  757. checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
  758. dependencies = [
  759. "socket2",
  760. "widestring",
  761. "winapi 0.3.9",
  762. "winreg",
  763. ]
  764. [[package]]
  765. name = "itoa"
  766. version = "0.4.6"
  767. source = "registry+https://github.com/rust-lang/crates.io-index"
  768. checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
  769. [[package]]
  770. name = "kernel32-sys"
  771. version = "0.2.2"
  772. source = "registry+https://github.com/rust-lang/crates.io-index"
  773. checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
  774. dependencies = [
  775. "winapi 0.2.8",
  776. "winapi-build",
  777. ]
  778. [[package]]
  779. name = "language-tags"
  780. version = "0.2.2"
  781. source = "registry+https://github.com/rust-lang/crates.io-index"
  782. checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
  783. [[package]]
  784. name = "lazy_static"
  785. version = "1.4.0"
  786. source = "registry+https://github.com/rust-lang/crates.io-index"
  787. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  788. [[package]]
  789. name = "libc"
  790. version = "0.2.74"
  791. source = "registry+https://github.com/rust-lang/crates.io-index"
  792. checksum = "a2f02823cf78b754822df5f7f268fb59822e7296276d3e069d8e8cb26a14bd10"
  793. [[package]]
  794. name = "linked-hash-map"
  795. version = "0.5.3"
  796. source = "registry+https://github.com/rust-lang/crates.io-index"
  797. checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a"
  798. [[package]]
  799. name = "lock_api"
  800. version = "0.4.1"
  801. source = "registry+https://github.com/rust-lang/crates.io-index"
  802. checksum = "28247cc5a5be2f05fbcd76dd0cf2c7d3b5400cb978a28042abcd4fa0b3f8261c"
  803. dependencies = [
  804. "scopeguard",
  805. ]
  806. [[package]]
  807. name = "log"
  808. version = "0.4.11"
  809. source = "registry+https://github.com/rust-lang/crates.io-index"
  810. checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
  811. dependencies = [
  812. "cfg-if",
  813. ]
  814. [[package]]
  815. name = "lru-cache"
  816. version = "0.1.2"
  817. source = "registry+https://github.com/rust-lang/crates.io-index"
  818. checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
  819. dependencies = [
  820. "linked-hash-map",
  821. ]
  822. [[package]]
  823. name = "match_cfg"
  824. version = "0.1.0"
  825. source = "registry+https://github.com/rust-lang/crates.io-index"
  826. checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
  827. [[package]]
  828. name = "matches"
  829. version = "0.1.8"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
  832. [[package]]
  833. name = "memchr"
  834. version = "2.3.3"
  835. source = "registry+https://github.com/rust-lang/crates.io-index"
  836. checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
  837. [[package]]
  838. name = "mime"
  839. version = "0.3.16"
  840. source = "registry+https://github.com/rust-lang/crates.io-index"
  841. checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
  842. [[package]]
  843. name = "miniz_oxide"
  844. version = "0.4.0"
  845. source = "registry+https://github.com/rust-lang/crates.io-index"
  846. checksum = "be0f75932c1f6cfae3c04000e40114adf955636e19040f9c0a2c380702aa1c7f"
  847. dependencies = [
  848. "adler",
  849. ]
  850. [[package]]
  851. name = "mio"
  852. version = "0.6.22"
  853. source = "registry+https://github.com/rust-lang/crates.io-index"
  854. checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
  855. dependencies = [
  856. "cfg-if",
  857. "fuchsia-zircon",
  858. "fuchsia-zircon-sys",
  859. "iovec",
  860. "kernel32-sys",
  861. "libc",
  862. "log",
  863. "miow",
  864. "net2",
  865. "slab",
  866. "winapi 0.2.8",
  867. ]
  868. [[package]]
  869. name = "mio-uds"
  870. version = "0.6.8"
  871. source = "registry+https://github.com/rust-lang/crates.io-index"
  872. checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
  873. dependencies = [
  874. "iovec",
  875. "libc",
  876. "mio",
  877. ]
  878. [[package]]
  879. name = "miow"
  880. version = "0.2.1"
  881. source = "registry+https://github.com/rust-lang/crates.io-index"
  882. checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
  883. dependencies = [
  884. "kernel32-sys",
  885. "net2",
  886. "winapi 0.2.8",
  887. "ws2_32-sys",
  888. ]
  889. [[package]]
  890. name = "net2"
  891. version = "0.2.34"
  892. source = "registry+https://github.com/rust-lang/crates.io-index"
  893. checksum = "2ba7c918ac76704fb42afcbbb43891e72731f3dcca3bef2a19786297baf14af7"
  894. dependencies = [
  895. "cfg-if",
  896. "libc",
  897. "winapi 0.3.9",
  898. ]
  899. [[package]]
  900. name = "num-integer"
  901. version = "0.1.43"
  902. source = "registry+https://github.com/rust-lang/crates.io-index"
  903. checksum = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b"
  904. dependencies = [
  905. "autocfg",
  906. "num-traits",
  907. ]
  908. [[package]]
  909. name = "num-traits"
  910. version = "0.2.12"
  911. source = "registry+https://github.com/rust-lang/crates.io-index"
  912. checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611"
  913. dependencies = [
  914. "autocfg",
  915. ]
  916. [[package]]
  917. name = "num_cpus"
  918. version = "1.13.0"
  919. source = "registry+https://github.com/rust-lang/crates.io-index"
  920. checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
  921. dependencies = [
  922. "hermit-abi",
  923. "libc",
  924. ]
  925. [[package]]
  926. name = "object"
  927. version = "0.20.0"
  928. source = "registry+https://github.com/rust-lang/crates.io-index"
  929. checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5"
  930. [[package]]
  931. name = "once_cell"
  932. version = "1.4.0"
  933. source = "registry+https://github.com/rust-lang/crates.io-index"
  934. checksum = "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d"
  935. [[package]]
  936. name = "parking_lot"
  937. version = "0.11.0"
  938. source = "registry+https://github.com/rust-lang/crates.io-index"
  939. checksum = "a4893845fa2ca272e647da5d0e46660a314ead9c2fdd9a883aabc32e481a8733"
  940. dependencies = [
  941. "instant",
  942. "lock_api",
  943. "parking_lot_core",
  944. ]
  945. [[package]]
  946. name = "parking_lot_core"
  947. version = "0.8.0"
  948. source = "registry+https://github.com/rust-lang/crates.io-index"
  949. checksum = "c361aa727dd08437f2f1447be8b59a33b0edd15e0fcee698f935613d9efbca9b"
  950. dependencies = [
  951. "cfg-if",
  952. "cloudabi",
  953. "instant",
  954. "libc",
  955. "redox_syscall",
  956. "smallvec",
  957. "winapi 0.3.9",
  958. ]
  959. [[package]]
  960. name = "percent-encoding"
  961. version = "2.1.0"
  962. source = "registry+https://github.com/rust-lang/crates.io-index"
  963. checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
  964. [[package]]
  965. name = "pin-project"
  966. version = "0.4.23"
  967. source = "registry+https://github.com/rust-lang/crates.io-index"
  968. checksum = "ca4433fff2ae79342e497d9f8ee990d174071408f28f726d6d83af93e58e48aa"
  969. dependencies = [
  970. "pin-project-internal",
  971. ]
  972. [[package]]
  973. name = "pin-project-internal"
  974. version = "0.4.23"
  975. source = "registry+https://github.com/rust-lang/crates.io-index"
  976. checksum = "2c0e815c3ee9a031fdf5af21c10aa17c573c9c6a566328d99e3936c34e36461f"
  977. dependencies = [
  978. "proc-macro2",
  979. "quote",
  980. "syn",
  981. ]
  982. [[package]]
  983. name = "pin-project-lite"
  984. version = "0.1.7"
  985. source = "registry+https://github.com/rust-lang/crates.io-index"
  986. checksum = "282adbf10f2698a7a77f8e983a74b2d18176c19a7fd32a45446139ae7b02b715"
  987. [[package]]
  988. name = "pin-utils"
  989. version = "0.1.0"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  992. [[package]]
  993. name = "ppv-lite86"
  994. version = "0.2.8"
  995. source = "registry+https://github.com/rust-lang/crates.io-index"
  996. checksum = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea"
  997. [[package]]
  998. name = "proc-macro-hack"
  999. version = "0.5.18"
  1000. source = "registry+https://github.com/rust-lang/crates.io-index"
  1001. checksum = "99c605b9a0adc77b7211c6b1f722dcb613d68d66859a44f3d485a6da332b0598"
  1002. [[package]]
  1003. name = "proc-macro-nested"
  1004. version = "0.1.6"
  1005. source = "registry+https://github.com/rust-lang/crates.io-index"
  1006. checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
  1007. [[package]]
  1008. name = "proc-macro2"
  1009. version = "1.0.19"
  1010. source = "registry+https://github.com/rust-lang/crates.io-index"
  1011. checksum = "04f5f085b5d71e2188cb8271e5da0161ad52c3f227a661a3c135fdf28e258b12"
  1012. dependencies = [
  1013. "unicode-xid",
  1014. ]
  1015. [[package]]
  1016. name = "quick-error"
  1017. version = "1.2.3"
  1018. source = "registry+https://github.com/rust-lang/crates.io-index"
  1019. checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
  1020. [[package]]
  1021. name = "quote"
  1022. version = "1.0.7"
  1023. source = "registry+https://github.com/rust-lang/crates.io-index"
  1024. checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
  1025. dependencies = [
  1026. "proc-macro2",
  1027. ]
  1028. [[package]]
  1029. name = "rand"
  1030. version = "0.7.3"
  1031. source = "registry+https://github.com/rust-lang/crates.io-index"
  1032. checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
  1033. dependencies = [
  1034. "getrandom",
  1035. "libc",
  1036. "rand_chacha",
  1037. "rand_core",
  1038. "rand_hc",
  1039. ]
  1040. [[package]]
  1041. name = "rand_chacha"
  1042. version = "0.2.2"
  1043. source = "registry+https://github.com/rust-lang/crates.io-index"
  1044. checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
  1045. dependencies = [
  1046. "ppv-lite86",
  1047. "rand_core",
  1048. ]
  1049. [[package]]
  1050. name = "rand_core"
  1051. version = "0.5.1"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  1054. dependencies = [
  1055. "getrandom",
  1056. ]
  1057. [[package]]
  1058. name = "rand_hc"
  1059. version = "0.2.0"
  1060. source = "registry+https://github.com/rust-lang/crates.io-index"
  1061. checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
  1062. dependencies = [
  1063. "rand_core",
  1064. ]
  1065. [[package]]
  1066. name = "redox_syscall"
  1067. version = "0.1.57"
  1068. source = "registry+https://github.com/rust-lang/crates.io-index"
  1069. checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
  1070. [[package]]
  1071. name = "regex"
  1072. version = "1.3.9"
  1073. source = "registry+https://github.com/rust-lang/crates.io-index"
  1074. checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6"
  1075. dependencies = [
  1076. "aho-corasick",
  1077. "memchr",
  1078. "regex-syntax",
  1079. "thread_local",
  1080. ]
  1081. [[package]]
  1082. name = "regex-syntax"
  1083. version = "0.6.18"
  1084. source = "registry+https://github.com/rust-lang/crates.io-index"
  1085. checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8"
  1086. [[package]]
  1087. name = "resolv-conf"
  1088. version = "0.6.3"
  1089. source = "registry+https://github.com/rust-lang/crates.io-index"
  1090. checksum = "11834e137f3b14e309437a8276714eed3a80d1ef894869e510f2c0c0b98b9f4a"
  1091. dependencies = [
  1092. "hostname",
  1093. "quick-error",
  1094. ]
  1095. [[package]]
  1096. name = "rustc-demangle"
  1097. version = "0.1.16"
  1098. source = "registry+https://github.com/rust-lang/crates.io-index"
  1099. checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
  1100. [[package]]
  1101. name = "ryu"
  1102. version = "1.0.5"
  1103. source = "registry+https://github.com/rust-lang/crates.io-index"
  1104. checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
  1105. [[package]]
  1106. name = "scopeguard"
  1107. version = "1.1.0"
  1108. source = "registry+https://github.com/rust-lang/crates.io-index"
  1109. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  1110. [[package]]
  1111. name = "serde"
  1112. version = "1.0.114"
  1113. source = "registry+https://github.com/rust-lang/crates.io-index"
  1114. checksum = "5317f7588f0a5078ee60ef675ef96735a1442132dc645eb1d12c018620ed8cd3"
  1115. dependencies = [
  1116. "serde_derive",
  1117. ]
  1118. [[package]]
  1119. name = "serde_derive"
  1120. version = "1.0.114"
  1121. source = "registry+https://github.com/rust-lang/crates.io-index"
  1122. checksum = "2a0be94b04690fbaed37cddffc5c134bf537c8e3329d53e982fe04c374978f8e"
  1123. dependencies = [
  1124. "proc-macro2",
  1125. "quote",
  1126. "syn",
  1127. ]
  1128. [[package]]
  1129. name = "serde_json"
  1130. version = "1.0.57"
  1131. source = "registry+https://github.com/rust-lang/crates.io-index"
  1132. checksum = "164eacbdb13512ec2745fb09d51fd5b22b0d65ed294a1dcf7285a360c80a675c"
  1133. dependencies = [
  1134. "itoa",
  1135. "ryu",
  1136. "serde",
  1137. ]
  1138. [[package]]
  1139. name = "serde_repr"
  1140. version = "0.1.6"
  1141. source = "registry+https://github.com/rust-lang/crates.io-index"
  1142. checksum = "2dc6b7951b17b051f3210b063f12cc17320e2fe30ae05b0fe2a3abb068551c76"
  1143. dependencies = [
  1144. "proc-macro2",
  1145. "quote",
  1146. "syn",
  1147. ]
  1148. [[package]]
  1149. name = "serde_urlencoded"
  1150. version = "0.6.1"
  1151. source = "registry+https://github.com/rust-lang/crates.io-index"
  1152. checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
  1153. dependencies = [
  1154. "dtoa",
  1155. "itoa",
  1156. "serde",
  1157. "url",
  1158. ]
  1159. [[package]]
  1160. name = "sha1"
  1161. version = "0.6.0"
  1162. source = "registry+https://github.com/rust-lang/crates.io-index"
  1163. checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
  1164. [[package]]
  1165. name = "signal-hook-registry"
  1166. version = "1.2.1"
  1167. source = "registry+https://github.com/rust-lang/crates.io-index"
  1168. checksum = "a3e12110bc539e657a646068aaf5eb5b63af9d0c1f7b29c97113fad80e15f035"
  1169. dependencies = [
  1170. "arc-swap",
  1171. "libc",
  1172. ]
  1173. [[package]]
  1174. name = "slab"
  1175. version = "0.4.2"
  1176. source = "registry+https://github.com/rust-lang/crates.io-index"
  1177. checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
  1178. [[package]]
  1179. name = "smallvec"
  1180. version = "1.4.1"
  1181. source = "registry+https://github.com/rust-lang/crates.io-index"
  1182. checksum = "3757cb9d89161a2f24e1cf78efa0c1fcff485d18e3f55e0aa3480824ddaa0f3f"
  1183. [[package]]
  1184. name = "socket2"
  1185. version = "0.3.12"
  1186. source = "registry+https://github.com/rust-lang/crates.io-index"
  1187. checksum = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
  1188. dependencies = [
  1189. "cfg-if",
  1190. "libc",
  1191. "redox_syscall",
  1192. "winapi 0.3.9",
  1193. ]
  1194. [[package]]
  1195. name = "syn"
  1196. version = "1.0.38"
  1197. source = "registry+https://github.com/rust-lang/crates.io-index"
  1198. checksum = "e69abc24912995b3038597a7a593be5053eb0fb44f3cc5beec0deb421790c1f4"
  1199. dependencies = [
  1200. "proc-macro2",
  1201. "quote",
  1202. "unicode-xid",
  1203. ]
  1204. [[package]]
  1205. name = "synstructure"
  1206. version = "0.12.4"
  1207. source = "registry+https://github.com/rust-lang/crates.io-index"
  1208. checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
  1209. dependencies = [
  1210. "proc-macro2",
  1211. "quote",
  1212. "syn",
  1213. "unicode-xid",
  1214. ]
  1215. [[package]]
  1216. name = "termcolor"
  1217. version = "1.1.0"
  1218. source = "registry+https://github.com/rust-lang/crates.io-index"
  1219. checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
  1220. dependencies = [
  1221. "winapi-util",
  1222. ]
  1223. [[package]]
  1224. name = "thread_local"
  1225. version = "1.0.1"
  1226. source = "registry+https://github.com/rust-lang/crates.io-index"
  1227. checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
  1228. dependencies = [
  1229. "lazy_static",
  1230. ]
  1231. [[package]]
  1232. name = "threadpool"
  1233. version = "1.8.1"
  1234. source = "registry+https://github.com/rust-lang/crates.io-index"
  1235. checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
  1236. dependencies = [
  1237. "num_cpus",
  1238. ]
  1239. [[package]]
  1240. name = "time"
  1241. version = "0.1.43"
  1242. source = "registry+https://github.com/rust-lang/crates.io-index"
  1243. checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
  1244. dependencies = [
  1245. "libc",
  1246. "winapi 0.3.9",
  1247. ]
  1248. [[package]]
  1249. name = "tinyvec"
  1250. version = "0.3.3"
  1251. source = "registry+https://github.com/rust-lang/crates.io-index"
  1252. checksum = "53953d2d3a5ad81d9f844a32f14ebb121f50b650cd59d0ee2a07cf13c617efed"
  1253. [[package]]
  1254. name = "tokio"
  1255. version = "0.2.22"
  1256. source = "registry+https://github.com/rust-lang/crates.io-index"
  1257. checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd"
  1258. dependencies = [
  1259. "bytes",
  1260. "futures-core",
  1261. "iovec",
  1262. "lazy_static",
  1263. "libc",
  1264. "memchr",
  1265. "mio",
  1266. "mio-uds",
  1267. "pin-project-lite",
  1268. "signal-hook-registry",
  1269. "slab",
  1270. "winapi 0.3.9",
  1271. ]
  1272. [[package]]
  1273. name = "tokio-util"
  1274. version = "0.2.0"
  1275. source = "registry+https://github.com/rust-lang/crates.io-index"
  1276. checksum = "571da51182ec208780505a32528fc5512a8fe1443ab960b3f2f3ef093cd16930"
  1277. dependencies = [
  1278. "bytes",
  1279. "futures-core",
  1280. "futures-sink",
  1281. "log",
  1282. "pin-project-lite",
  1283. "tokio",
  1284. ]
  1285. [[package]]
  1286. name = "tokio-util"
  1287. version = "0.3.1"
  1288. source = "registry+https://github.com/rust-lang/crates.io-index"
  1289. checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
  1290. dependencies = [
  1291. "bytes",
  1292. "futures-core",
  1293. "futures-sink",
  1294. "log",
  1295. "pin-project-lite",
  1296. "tokio",
  1297. ]
  1298. [[package]]
  1299. name = "tracing"
  1300. version = "0.1.18"
  1301. source = "registry+https://github.com/rust-lang/crates.io-index"
  1302. checksum = "f0aae59226cf195d8e74d4b34beae1859257efb4e5fed3f147d2dc2c7d372178"
  1303. dependencies = [
  1304. "cfg-if",
  1305. "log",
  1306. "tracing-core",
  1307. ]
  1308. [[package]]
  1309. name = "tracing-core"
  1310. version = "0.1.13"
  1311. source = "registry+https://github.com/rust-lang/crates.io-index"
  1312. checksum = "d593f98af59ebc017c0648f0117525db358745a8894a8d684e185ba3f45954f9"
  1313. dependencies = [
  1314. "lazy_static",
  1315. ]
  1316. [[package]]
  1317. name = "trust-dns-proto"
  1318. version = "0.18.0-alpha.2"
  1319. source = "registry+https://github.com/rust-lang/crates.io-index"
  1320. checksum = "2a7f3a2ab8a919f5eca52a468866a67ed7d3efa265d48a652a9a3452272b413f"
  1321. dependencies = [
  1322. "async-trait",
  1323. "enum-as-inner",
  1324. "failure",
  1325. "futures",
  1326. "idna",
  1327. "lazy_static",
  1328. "log",
  1329. "rand",
  1330. "smallvec",
  1331. "socket2",
  1332. "tokio",
  1333. "url",
  1334. ]
  1335. [[package]]
  1336. name = "trust-dns-resolver"
  1337. version = "0.18.0-alpha.2"
  1338. source = "registry+https://github.com/rust-lang/crates.io-index"
  1339. checksum = "6f90b1502b226f8b2514c6d5b37bafa8c200d7ca4102d57dc36ee0f3b7a04a2f"
  1340. dependencies = [
  1341. "cfg-if",
  1342. "failure",
  1343. "futures",
  1344. "ipconfig",
  1345. "lazy_static",
  1346. "log",
  1347. "lru-cache",
  1348. "resolv-conf",
  1349. "smallvec",
  1350. "tokio",
  1351. "trust-dns-proto",
  1352. ]
  1353. [[package]]
  1354. name = "unicode-bidi"
  1355. version = "0.3.4"
  1356. source = "registry+https://github.com/rust-lang/crates.io-index"
  1357. checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
  1358. dependencies = [
  1359. "matches",
  1360. ]
  1361. [[package]]
  1362. name = "unicode-normalization"
  1363. version = "0.1.13"
  1364. source = "registry+https://github.com/rust-lang/crates.io-index"
  1365. checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
  1366. dependencies = [
  1367. "tinyvec",
  1368. ]
  1369. [[package]]
  1370. name = "unicode-segmentation"
  1371. version = "1.6.0"
  1372. source = "registry+https://github.com/rust-lang/crates.io-index"
  1373. checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
  1374. [[package]]
  1375. name = "unicode-xid"
  1376. version = "0.2.1"
  1377. source = "registry+https://github.com/rust-lang/crates.io-index"
  1378. checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
  1379. [[package]]
  1380. name = "url"
  1381. version = "2.1.1"
  1382. source = "registry+https://github.com/rust-lang/crates.io-index"
  1383. checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
  1384. dependencies = [
  1385. "idna",
  1386. "matches",
  1387. "percent-encoding",
  1388. ]
  1389. [[package]]
  1390. name = "wasi"
  1391. version = "0.9.0+wasi-snapshot-preview1"
  1392. source = "registry+https://github.com/rust-lang/crates.io-index"
  1393. checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
  1394. [[package]]
  1395. name = "widestring"
  1396. version = "0.4.2"
  1397. source = "registry+https://github.com/rust-lang/crates.io-index"
  1398. checksum = "a763e303c0e0f23b0da40888724762e802a8ffefbc22de4127ef42493c2ea68c"
  1399. [[package]]
  1400. name = "winapi"
  1401. version = "0.2.8"
  1402. source = "registry+https://github.com/rust-lang/crates.io-index"
  1403. checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
  1404. [[package]]
  1405. name = "winapi"
  1406. version = "0.3.9"
  1407. source = "registry+https://github.com/rust-lang/crates.io-index"
  1408. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1409. dependencies = [
  1410. "winapi-i686-pc-windows-gnu",
  1411. "winapi-x86_64-pc-windows-gnu",
  1412. ]
  1413. [[package]]
  1414. name = "winapi-build"
  1415. version = "0.1.1"
  1416. source = "registry+https://github.com/rust-lang/crates.io-index"
  1417. checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
  1418. [[package]]
  1419. name = "winapi-i686-pc-windows-gnu"
  1420. version = "0.4.0"
  1421. source = "registry+https://github.com/rust-lang/crates.io-index"
  1422. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1423. [[package]]
  1424. name = "winapi-util"
  1425. version = "0.1.5"
  1426. source = "registry+https://github.com/rust-lang/crates.io-index"
  1427. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  1428. dependencies = [
  1429. "winapi 0.3.9",
  1430. ]
  1431. [[package]]
  1432. name = "winapi-x86_64-pc-windows-gnu"
  1433. version = "0.4.0"
  1434. source = "registry+https://github.com/rust-lang/crates.io-index"
  1435. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1436. [[package]]
  1437. name = "winreg"
  1438. version = "0.6.2"
  1439. source = "registry+https://github.com/rust-lang/crates.io-index"
  1440. checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
  1441. dependencies = [
  1442. "winapi 0.3.9",
  1443. ]
  1444. [[package]]
  1445. name = "ws2_32-sys"
  1446. version = "0.2.1"
  1447. source = "registry+https://github.com/rust-lang/crates.io-index"
  1448. checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
  1449. dependencies = [
  1450. "winapi 0.2.8",
  1451. "winapi-build",
  1452. ]