Cargo.lock 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "ahash"
  6. version = "0.7.6"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
  9. dependencies = [
  10. "getrandom",
  11. "once_cell",
  12. "version_check",
  13. ]
  14. [[package]]
  15. name = "aho-corasick"
  16. version = "0.7.19"
  17. source = "registry+https://github.com/rust-lang/crates.io-index"
  18. checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
  19. dependencies = [
  20. "memchr",
  21. ]
  22. [[package]]
  23. name = "android_system_properties"
  24. version = "0.1.5"
  25. source = "registry+https://github.com/rust-lang/crates.io-index"
  26. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  27. dependencies = [
  28. "libc",
  29. ]
  30. [[package]]
  31. name = "anyhow"
  32. version = "1.0.66"
  33. source = "registry+https://github.com/rust-lang/crates.io-index"
  34. checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
  35. [[package]]
  36. name = "atty"
  37. version = "0.2.14"
  38. source = "registry+https://github.com/rust-lang/crates.io-index"
  39. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  40. dependencies = [
  41. "hermit-abi",
  42. "libc",
  43. "winapi",
  44. ]
  45. [[package]]
  46. name = "autocfg"
  47. version = "1.1.0"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  50. [[package]]
  51. name = "bitflags"
  52. version = "1.3.2"
  53. source = "registry+https://github.com/rust-lang/crates.io-index"
  54. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  55. [[package]]
  56. name = "bumpalo"
  57. version = "3.11.1"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
  60. [[package]]
  61. name = "bytes"
  62. version = "1.2.1"
  63. source = "registry+https://github.com/rust-lang/crates.io-index"
  64. checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
  65. dependencies = [
  66. "serde",
  67. ]
  68. [[package]]
  69. name = "cc"
  70. version = "1.0.76"
  71. source = "registry+https://github.com/rust-lang/crates.io-index"
  72. checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f"
  73. dependencies = [
  74. "jobserver",
  75. ]
  76. [[package]]
  77. name = "cfg-if"
  78. version = "1.0.0"
  79. source = "registry+https://github.com/rust-lang/crates.io-index"
  80. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  81. [[package]]
  82. name = "chrono"
  83. version = "0.4.23"
  84. source = "registry+https://github.com/rust-lang/crates.io-index"
  85. checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
  86. dependencies = [
  87. "iana-time-zone",
  88. "js-sys",
  89. "num-integer",
  90. "num-traits",
  91. "time",
  92. "wasm-bindgen",
  93. "winapi",
  94. ]
  95. [[package]]
  96. name = "codespan-reporting"
  97. version = "0.11.1"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  100. dependencies = [
  101. "termcolor",
  102. "unicode-width",
  103. ]
  104. [[package]]
  105. name = "confy"
  106. version = "0.4.0"
  107. source = "git+https://github.com/open-trade/confy#630cc28a396cb7d01eefdd9f3824486fe4d8554b"
  108. dependencies = [
  109. "directories-next",
  110. "serde",
  111. "thiserror",
  112. "toml",
  113. ]
  114. [[package]]
  115. name = "core-foundation-sys"
  116. version = "0.8.3"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
  119. [[package]]
  120. name = "cxx"
  121. version = "1.0.81"
  122. source = "registry+https://github.com/rust-lang/crates.io-index"
  123. checksum = "97abf9f0eca9e52b7f81b945524e76710e6cb2366aead23b7d4fbf72e281f888"
  124. dependencies = [
  125. "cc",
  126. "cxxbridge-flags",
  127. "cxxbridge-macro",
  128. "link-cplusplus",
  129. ]
  130. [[package]]
  131. name = "cxx-build"
  132. version = "1.0.81"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "7cc32cc5fea1d894b77d269ddb9f192110069a8a9c1f1d441195fba90553dea3"
  135. dependencies = [
  136. "cc",
  137. "codespan-reporting",
  138. "once_cell",
  139. "proc-macro2",
  140. "quote",
  141. "scratch",
  142. "syn",
  143. ]
  144. [[package]]
  145. name = "cxxbridge-flags"
  146. version = "1.0.81"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "8ca220e4794c934dc6b1207c3b42856ad4c302f2df1712e9f8d2eec5afaacf1f"
  149. [[package]]
  150. name = "cxxbridge-macro"
  151. version = "1.0.81"
  152. source = "registry+https://github.com/rust-lang/crates.io-index"
  153. checksum = "b846f081361125bfc8dc9d3940c84e1fd83ba54bbca7b17cd29483c828be0704"
  154. dependencies = [
  155. "proc-macro2",
  156. "quote",
  157. "syn",
  158. ]
  159. [[package]]
  160. name = "directories-next"
  161. version = "2.0.0"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
  164. dependencies = [
  165. "cfg-if",
  166. "dirs-sys-next",
  167. ]
  168. [[package]]
  169. name = "dirs-next"
  170. version = "2.0.0"
  171. source = "registry+https://github.com/rust-lang/crates.io-index"
  172. checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
  173. dependencies = [
  174. "cfg-if",
  175. "dirs-sys-next",
  176. ]
  177. [[package]]
  178. name = "dirs-sys-next"
  179. version = "0.1.2"
  180. source = "registry+https://github.com/rust-lang/crates.io-index"
  181. checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
  182. dependencies = [
  183. "libc",
  184. "redox_users",
  185. "winapi",
  186. ]
  187. [[package]]
  188. name = "dylib_virtual_display"
  189. version = "0.1.0"
  190. dependencies = [
  191. "cc",
  192. "hbb_common",
  193. "lazy_static",
  194. "serde",
  195. "serde_derive",
  196. "thiserror",
  197. ]
  198. [[package]]
  199. name = "ed25519"
  200. version = "1.5.2"
  201. source = "registry+https://github.com/rust-lang/crates.io-index"
  202. checksum = "1e9c280362032ea4203659fc489832d0204ef09f247a0506f170dafcac08c369"
  203. dependencies = [
  204. "signature",
  205. ]
  206. [[package]]
  207. name = "either"
  208. version = "1.8.0"
  209. source = "registry+https://github.com/rust-lang/crates.io-index"
  210. checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
  211. [[package]]
  212. name = "env_logger"
  213. version = "0.9.3"
  214. source = "registry+https://github.com/rust-lang/crates.io-index"
  215. checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
  216. dependencies = [
  217. "atty",
  218. "humantime",
  219. "log",
  220. "regex",
  221. "termcolor",
  222. ]
  223. [[package]]
  224. name = "fastrand"
  225. version = "1.8.0"
  226. source = "registry+https://github.com/rust-lang/crates.io-index"
  227. checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
  228. dependencies = [
  229. "instant",
  230. ]
  231. [[package]]
  232. name = "filetime"
  233. version = "0.2.18"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3"
  236. dependencies = [
  237. "cfg-if",
  238. "libc",
  239. "redox_syscall",
  240. "windows-sys",
  241. ]
  242. [[package]]
  243. name = "futures"
  244. version = "0.3.25"
  245. source = "registry+https://github.com/rust-lang/crates.io-index"
  246. checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
  247. dependencies = [
  248. "futures-channel",
  249. "futures-core",
  250. "futures-executor",
  251. "futures-io",
  252. "futures-sink",
  253. "futures-task",
  254. "futures-util",
  255. ]
  256. [[package]]
  257. name = "futures-channel"
  258. version = "0.3.25"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
  261. dependencies = [
  262. "futures-core",
  263. "futures-sink",
  264. ]
  265. [[package]]
  266. name = "futures-core"
  267. version = "0.3.25"
  268. source = "registry+https://github.com/rust-lang/crates.io-index"
  269. checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
  270. [[package]]
  271. name = "futures-executor"
  272. version = "0.3.25"
  273. source = "registry+https://github.com/rust-lang/crates.io-index"
  274. checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
  275. dependencies = [
  276. "futures-core",
  277. "futures-task",
  278. "futures-util",
  279. ]
  280. [[package]]
  281. name = "futures-io"
  282. version = "0.3.25"
  283. source = "registry+https://github.com/rust-lang/crates.io-index"
  284. checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
  285. [[package]]
  286. name = "futures-macro"
  287. version = "0.3.25"
  288. source = "registry+https://github.com/rust-lang/crates.io-index"
  289. checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
  290. dependencies = [
  291. "proc-macro2",
  292. "quote",
  293. "syn",
  294. ]
  295. [[package]]
  296. name = "futures-sink"
  297. version = "0.3.25"
  298. source = "registry+https://github.com/rust-lang/crates.io-index"
  299. checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
  300. [[package]]
  301. name = "futures-task"
  302. version = "0.3.25"
  303. source = "registry+https://github.com/rust-lang/crates.io-index"
  304. checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
  305. [[package]]
  306. name = "futures-util"
  307. version = "0.3.25"
  308. source = "registry+https://github.com/rust-lang/crates.io-index"
  309. checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
  310. dependencies = [
  311. "futures-channel",
  312. "futures-core",
  313. "futures-io",
  314. "futures-macro",
  315. "futures-sink",
  316. "futures-task",
  317. "memchr",
  318. "pin-project-lite",
  319. "pin-utils",
  320. "slab",
  321. ]
  322. [[package]]
  323. name = "getrandom"
  324. version = "0.2.8"
  325. source = "registry+https://github.com/rust-lang/crates.io-index"
  326. checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
  327. dependencies = [
  328. "cfg-if",
  329. "libc",
  330. "wasi 0.11.0+wasi-snapshot-preview1",
  331. ]
  332. [[package]]
  333. name = "hashbrown"
  334. version = "0.12.3"
  335. source = "registry+https://github.com/rust-lang/crates.io-index"
  336. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  337. dependencies = [
  338. "ahash",
  339. ]
  340. [[package]]
  341. name = "hbb_common"
  342. version = "0.1.0"
  343. dependencies = [
  344. "anyhow",
  345. "bytes",
  346. "chrono",
  347. "confy",
  348. "directories-next",
  349. "dirs-next",
  350. "env_logger",
  351. "filetime",
  352. "futures",
  353. "futures-util",
  354. "lazy_static",
  355. "log",
  356. "mac_address",
  357. "machine-uid",
  358. "protobuf",
  359. "protobuf-codegen",
  360. "rand",
  361. "regex",
  362. "serde",
  363. "serde_derive",
  364. "socket2 0.3.19",
  365. "sodiumoxide",
  366. "tokio",
  367. "tokio-socks",
  368. "tokio-util",
  369. "winapi",
  370. "zstd",
  371. ]
  372. [[package]]
  373. name = "hermit-abi"
  374. version = "0.1.19"
  375. source = "registry+https://github.com/rust-lang/crates.io-index"
  376. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  377. dependencies = [
  378. "libc",
  379. ]
  380. [[package]]
  381. name = "humantime"
  382. version = "2.1.0"
  383. source = "registry+https://github.com/rust-lang/crates.io-index"
  384. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  385. [[package]]
  386. name = "iana-time-zone"
  387. version = "0.1.53"
  388. source = "registry+https://github.com/rust-lang/crates.io-index"
  389. checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
  390. dependencies = [
  391. "android_system_properties",
  392. "core-foundation-sys",
  393. "iana-time-zone-haiku",
  394. "js-sys",
  395. "wasm-bindgen",
  396. "winapi",
  397. ]
  398. [[package]]
  399. name = "iana-time-zone-haiku"
  400. version = "0.1.1"
  401. source = "registry+https://github.com/rust-lang/crates.io-index"
  402. checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
  403. dependencies = [
  404. "cxx",
  405. "cxx-build",
  406. ]
  407. [[package]]
  408. name = "indexmap"
  409. version = "1.9.2"
  410. source = "registry+https://github.com/rust-lang/crates.io-index"
  411. checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
  412. dependencies = [
  413. "autocfg",
  414. "hashbrown",
  415. ]
  416. [[package]]
  417. name = "instant"
  418. version = "0.1.12"
  419. source = "registry+https://github.com/rust-lang/crates.io-index"
  420. checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
  421. dependencies = [
  422. "cfg-if",
  423. ]
  424. [[package]]
  425. name = "jobserver"
  426. version = "0.1.25"
  427. source = "registry+https://github.com/rust-lang/crates.io-index"
  428. checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
  429. dependencies = [
  430. "libc",
  431. ]
  432. [[package]]
  433. name = "js-sys"
  434. version = "0.3.60"
  435. source = "registry+https://github.com/rust-lang/crates.io-index"
  436. checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
  437. dependencies = [
  438. "wasm-bindgen",
  439. ]
  440. [[package]]
  441. name = "lazy_static"
  442. version = "1.4.0"
  443. source = "registry+https://github.com/rust-lang/crates.io-index"
  444. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  445. [[package]]
  446. name = "libc"
  447. version = "0.2.137"
  448. source = "registry+https://github.com/rust-lang/crates.io-index"
  449. checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
  450. [[package]]
  451. name = "libloading"
  452. version = "0.7.4"
  453. source = "registry+https://github.com/rust-lang/crates.io-index"
  454. checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
  455. dependencies = [
  456. "cfg-if",
  457. "winapi",
  458. ]
  459. [[package]]
  460. name = "libsodium-sys"
  461. version = "0.2.7"
  462. source = "registry+https://github.com/rust-lang/crates.io-index"
  463. checksum = "6b779387cd56adfbc02ea4a668e704f729be8d6a6abd2c27ca5ee537849a92fd"
  464. dependencies = [
  465. "cc",
  466. "libc",
  467. "pkg-config",
  468. "walkdir",
  469. ]
  470. [[package]]
  471. name = "link-cplusplus"
  472. version = "1.0.7"
  473. source = "registry+https://github.com/rust-lang/crates.io-index"
  474. checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
  475. dependencies = [
  476. "cc",
  477. ]
  478. [[package]]
  479. name = "lock_api"
  480. version = "0.4.9"
  481. source = "registry+https://github.com/rust-lang/crates.io-index"
  482. checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
  483. dependencies = [
  484. "autocfg",
  485. "scopeguard",
  486. ]
  487. [[package]]
  488. name = "log"
  489. version = "0.4.17"
  490. source = "registry+https://github.com/rust-lang/crates.io-index"
  491. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  492. dependencies = [
  493. "cfg-if",
  494. ]
  495. [[package]]
  496. name = "mac_address"
  497. version = "1.1.4"
  498. source = "registry+https://github.com/rust-lang/crates.io-index"
  499. checksum = "b238e3235c8382b7653c6408ed1b08dd379bdb9fdf990fb0bbae3db2cc0ae963"
  500. dependencies = [
  501. "nix",
  502. "winapi",
  503. ]
  504. [[package]]
  505. name = "machine-uid"
  506. version = "0.2.0"
  507. source = "registry+https://github.com/rust-lang/crates.io-index"
  508. checksum = "1f1595709b0a7386bcd56ba34d250d626e5503917d05d32cdccddcd68603e212"
  509. dependencies = [
  510. "winreg",
  511. ]
  512. [[package]]
  513. name = "memchr"
  514. version = "2.5.0"
  515. source = "registry+https://github.com/rust-lang/crates.io-index"
  516. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  517. [[package]]
  518. name = "memoffset"
  519. version = "0.6.5"
  520. source = "registry+https://github.com/rust-lang/crates.io-index"
  521. checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
  522. dependencies = [
  523. "autocfg",
  524. ]
  525. [[package]]
  526. name = "mio"
  527. version = "0.8.5"
  528. source = "registry+https://github.com/rust-lang/crates.io-index"
  529. checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
  530. dependencies = [
  531. "libc",
  532. "log",
  533. "wasi 0.11.0+wasi-snapshot-preview1",
  534. "windows-sys",
  535. ]
  536. [[package]]
  537. name = "nix"
  538. version = "0.23.1"
  539. source = "registry+https://github.com/rust-lang/crates.io-index"
  540. checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
  541. dependencies = [
  542. "bitflags",
  543. "cc",
  544. "cfg-if",
  545. "libc",
  546. "memoffset",
  547. ]
  548. [[package]]
  549. name = "num-integer"
  550. version = "0.1.45"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  553. dependencies = [
  554. "autocfg",
  555. "num-traits",
  556. ]
  557. [[package]]
  558. name = "num-traits"
  559. version = "0.2.15"
  560. source = "registry+https://github.com/rust-lang/crates.io-index"
  561. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  562. dependencies = [
  563. "autocfg",
  564. ]
  565. [[package]]
  566. name = "num_cpus"
  567. version = "1.14.0"
  568. source = "registry+https://github.com/rust-lang/crates.io-index"
  569. checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
  570. dependencies = [
  571. "hermit-abi",
  572. "libc",
  573. ]
  574. [[package]]
  575. name = "once_cell"
  576. version = "1.16.0"
  577. source = "registry+https://github.com/rust-lang/crates.io-index"
  578. checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
  579. [[package]]
  580. name = "parking_lot"
  581. version = "0.12.1"
  582. source = "registry+https://github.com/rust-lang/crates.io-index"
  583. checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
  584. dependencies = [
  585. "lock_api",
  586. "parking_lot_core",
  587. ]
  588. [[package]]
  589. name = "parking_lot_core"
  590. version = "0.9.4"
  591. source = "registry+https://github.com/rust-lang/crates.io-index"
  592. checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
  593. dependencies = [
  594. "cfg-if",
  595. "libc",
  596. "redox_syscall",
  597. "smallvec",
  598. "windows-sys",
  599. ]
  600. [[package]]
  601. name = "pin-project"
  602. version = "1.0.12"
  603. source = "registry+https://github.com/rust-lang/crates.io-index"
  604. checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
  605. dependencies = [
  606. "pin-project-internal",
  607. ]
  608. [[package]]
  609. name = "pin-project-internal"
  610. version = "1.0.12"
  611. source = "registry+https://github.com/rust-lang/crates.io-index"
  612. checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
  613. dependencies = [
  614. "proc-macro2",
  615. "quote",
  616. "syn",
  617. ]
  618. [[package]]
  619. name = "pin-project-lite"
  620. version = "0.2.9"
  621. source = "registry+https://github.com/rust-lang/crates.io-index"
  622. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  623. [[package]]
  624. name = "pin-utils"
  625. version = "0.1.0"
  626. source = "registry+https://github.com/rust-lang/crates.io-index"
  627. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  628. [[package]]
  629. name = "pkg-config"
  630. version = "0.3.26"
  631. source = "registry+https://github.com/rust-lang/crates.io-index"
  632. checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
  633. [[package]]
  634. name = "ppv-lite86"
  635. version = "0.2.17"
  636. source = "registry+https://github.com/rust-lang/crates.io-index"
  637. checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
  638. [[package]]
  639. name = "proc-macro2"
  640. version = "1.0.47"
  641. source = "registry+https://github.com/rust-lang/crates.io-index"
  642. checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
  643. dependencies = [
  644. "unicode-ident",
  645. ]
  646. [[package]]
  647. name = "protobuf"
  648. version = "3.2.0"
  649. source = "registry+https://github.com/rust-lang/crates.io-index"
  650. checksum = "b55bad9126f378a853655831eb7363b7b01b81d19f8cb1218861086ca4a1a61e"
  651. dependencies = [
  652. "bytes",
  653. "once_cell",
  654. "protobuf-support",
  655. "thiserror",
  656. ]
  657. [[package]]
  658. name = "protobuf-codegen"
  659. version = "3.2.0"
  660. source = "registry+https://github.com/rust-lang/crates.io-index"
  661. checksum = "0dd418ac3c91caa4032d37cb80ff0d44e2ebe637b2fb243b6234bf89cdac4901"
  662. dependencies = [
  663. "anyhow",
  664. "once_cell",
  665. "protobuf",
  666. "protobuf-parse",
  667. "regex",
  668. "tempfile",
  669. "thiserror",
  670. ]
  671. [[package]]
  672. name = "protobuf-parse"
  673. version = "3.2.0"
  674. source = "registry+https://github.com/rust-lang/crates.io-index"
  675. checksum = "9d39b14605eaa1f6a340aec7f320b34064feb26c93aec35d6a9a2272a8ddfa49"
  676. dependencies = [
  677. "anyhow",
  678. "indexmap",
  679. "log",
  680. "protobuf",
  681. "protobuf-support",
  682. "tempfile",
  683. "thiserror",
  684. "which",
  685. ]
  686. [[package]]
  687. name = "protobuf-support"
  688. version = "3.2.0"
  689. source = "registry+https://github.com/rust-lang/crates.io-index"
  690. checksum = "a5d4d7b8601c814cfb36bcebb79f0e61e45e1e93640cf778837833bbed05c372"
  691. dependencies = [
  692. "thiserror",
  693. ]
  694. [[package]]
  695. name = "quote"
  696. version = "1.0.21"
  697. source = "registry+https://github.com/rust-lang/crates.io-index"
  698. checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
  699. dependencies = [
  700. "proc-macro2",
  701. ]
  702. [[package]]
  703. name = "rand"
  704. version = "0.8.5"
  705. source = "registry+https://github.com/rust-lang/crates.io-index"
  706. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  707. dependencies = [
  708. "libc",
  709. "rand_chacha",
  710. "rand_core",
  711. ]
  712. [[package]]
  713. name = "rand_chacha"
  714. version = "0.3.1"
  715. source = "registry+https://github.com/rust-lang/crates.io-index"
  716. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  717. dependencies = [
  718. "ppv-lite86",
  719. "rand_core",
  720. ]
  721. [[package]]
  722. name = "rand_core"
  723. version = "0.6.4"
  724. source = "registry+https://github.com/rust-lang/crates.io-index"
  725. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  726. dependencies = [
  727. "getrandom",
  728. ]
  729. [[package]]
  730. name = "redox_syscall"
  731. version = "0.2.16"
  732. source = "registry+https://github.com/rust-lang/crates.io-index"
  733. checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
  734. dependencies = [
  735. "bitflags",
  736. ]
  737. [[package]]
  738. name = "redox_users"
  739. version = "0.4.3"
  740. source = "registry+https://github.com/rust-lang/crates.io-index"
  741. checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
  742. dependencies = [
  743. "getrandom",
  744. "redox_syscall",
  745. "thiserror",
  746. ]
  747. [[package]]
  748. name = "regex"
  749. version = "1.7.0"
  750. source = "registry+https://github.com/rust-lang/crates.io-index"
  751. checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
  752. dependencies = [
  753. "aho-corasick",
  754. "memchr",
  755. "regex-syntax",
  756. ]
  757. [[package]]
  758. name = "regex-syntax"
  759. version = "0.6.28"
  760. source = "registry+https://github.com/rust-lang/crates.io-index"
  761. checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
  762. [[package]]
  763. name = "remove_dir_all"
  764. version = "0.5.3"
  765. source = "registry+https://github.com/rust-lang/crates.io-index"
  766. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  767. dependencies = [
  768. "winapi",
  769. ]
  770. [[package]]
  771. name = "same-file"
  772. version = "1.0.6"
  773. source = "registry+https://github.com/rust-lang/crates.io-index"
  774. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  775. dependencies = [
  776. "winapi-util",
  777. ]
  778. [[package]]
  779. name = "scopeguard"
  780. version = "1.1.0"
  781. source = "registry+https://github.com/rust-lang/crates.io-index"
  782. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  783. [[package]]
  784. name = "scratch"
  785. version = "1.0.2"
  786. source = "registry+https://github.com/rust-lang/crates.io-index"
  787. checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
  788. [[package]]
  789. name = "serde"
  790. version = "1.0.147"
  791. source = "registry+https://github.com/rust-lang/crates.io-index"
  792. checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
  793. [[package]]
  794. name = "serde_derive"
  795. version = "1.0.147"
  796. source = "registry+https://github.com/rust-lang/crates.io-index"
  797. checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
  798. dependencies = [
  799. "proc-macro2",
  800. "quote",
  801. "syn",
  802. ]
  803. [[package]]
  804. name = "signal-hook-registry"
  805. version = "1.4.0"
  806. source = "registry+https://github.com/rust-lang/crates.io-index"
  807. checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
  808. dependencies = [
  809. "libc",
  810. ]
  811. [[package]]
  812. name = "signature"
  813. version = "1.6.4"
  814. source = "registry+https://github.com/rust-lang/crates.io-index"
  815. checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
  816. [[package]]
  817. name = "slab"
  818. version = "0.4.7"
  819. source = "registry+https://github.com/rust-lang/crates.io-index"
  820. checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
  821. dependencies = [
  822. "autocfg",
  823. ]
  824. [[package]]
  825. name = "smallvec"
  826. version = "1.10.0"
  827. source = "registry+https://github.com/rust-lang/crates.io-index"
  828. checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
  829. [[package]]
  830. name = "socket2"
  831. version = "0.3.19"
  832. source = "registry+https://github.com/rust-lang/crates.io-index"
  833. checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
  834. dependencies = [
  835. "cfg-if",
  836. "libc",
  837. "winapi",
  838. ]
  839. [[package]]
  840. name = "socket2"
  841. version = "0.4.7"
  842. source = "registry+https://github.com/rust-lang/crates.io-index"
  843. checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
  844. dependencies = [
  845. "libc",
  846. "winapi",
  847. ]
  848. [[package]]
  849. name = "sodiumoxide"
  850. version = "0.2.7"
  851. source = "registry+https://github.com/rust-lang/crates.io-index"
  852. checksum = "e26be3acb6c2d9a7aac28482586a7856436af4cfe7100031d219de2d2ecb0028"
  853. dependencies = [
  854. "ed25519",
  855. "libc",
  856. "libsodium-sys",
  857. "serde",
  858. ]
  859. [[package]]
  860. name = "syn"
  861. version = "1.0.103"
  862. source = "registry+https://github.com/rust-lang/crates.io-index"
  863. checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
  864. dependencies = [
  865. "proc-macro2",
  866. "quote",
  867. "unicode-ident",
  868. ]
  869. [[package]]
  870. name = "tempfile"
  871. version = "3.3.0"
  872. source = "registry+https://github.com/rust-lang/crates.io-index"
  873. checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
  874. dependencies = [
  875. "cfg-if",
  876. "fastrand",
  877. "libc",
  878. "redox_syscall",
  879. "remove_dir_all",
  880. "winapi",
  881. ]
  882. [[package]]
  883. name = "termcolor"
  884. version = "1.1.3"
  885. source = "registry+https://github.com/rust-lang/crates.io-index"
  886. checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
  887. dependencies = [
  888. "winapi-util",
  889. ]
  890. [[package]]
  891. name = "thiserror"
  892. version = "1.0.37"
  893. source = "registry+https://github.com/rust-lang/crates.io-index"
  894. checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
  895. dependencies = [
  896. "thiserror-impl",
  897. ]
  898. [[package]]
  899. name = "thiserror-impl"
  900. version = "1.0.37"
  901. source = "registry+https://github.com/rust-lang/crates.io-index"
  902. checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
  903. dependencies = [
  904. "proc-macro2",
  905. "quote",
  906. "syn",
  907. ]
  908. [[package]]
  909. name = "time"
  910. version = "0.1.44"
  911. source = "registry+https://github.com/rust-lang/crates.io-index"
  912. checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  913. dependencies = [
  914. "libc",
  915. "wasi 0.10.0+wasi-snapshot-preview1",
  916. "winapi",
  917. ]
  918. [[package]]
  919. name = "tokio"
  920. version = "1.21.2"
  921. source = "registry+https://github.com/rust-lang/crates.io-index"
  922. checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
  923. dependencies = [
  924. "autocfg",
  925. "bytes",
  926. "libc",
  927. "memchr",
  928. "mio",
  929. "num_cpus",
  930. "parking_lot",
  931. "pin-project-lite",
  932. "signal-hook-registry",
  933. "socket2 0.4.7",
  934. "tokio-macros",
  935. "winapi",
  936. ]
  937. [[package]]
  938. name = "tokio-macros"
  939. version = "1.8.0"
  940. source = "registry+https://github.com/rust-lang/crates.io-index"
  941. checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
  942. dependencies = [
  943. "proc-macro2",
  944. "quote",
  945. "syn",
  946. ]
  947. [[package]]
  948. name = "tokio-socks"
  949. version = "0.5.1-1"
  950. source = "git+https://github.com/open-trade/tokio-socks#7034e79263ce25c348be072808d7601d82cd892d"
  951. dependencies = [
  952. "bytes",
  953. "either",
  954. "futures-core",
  955. "futures-sink",
  956. "futures-util",
  957. "pin-project",
  958. "thiserror",
  959. "tokio",
  960. "tokio-util",
  961. ]
  962. [[package]]
  963. name = "tokio-util"
  964. version = "0.7.4"
  965. source = "registry+https://github.com/rust-lang/crates.io-index"
  966. checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
  967. dependencies = [
  968. "bytes",
  969. "futures-core",
  970. "futures-io",
  971. "futures-sink",
  972. "futures-util",
  973. "hashbrown",
  974. "pin-project-lite",
  975. "slab",
  976. "tokio",
  977. "tracing",
  978. ]
  979. [[package]]
  980. name = "toml"
  981. version = "0.5.9"
  982. source = "registry+https://github.com/rust-lang/crates.io-index"
  983. checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
  984. dependencies = [
  985. "serde",
  986. ]
  987. [[package]]
  988. name = "tracing"
  989. version = "0.1.37"
  990. source = "registry+https://github.com/rust-lang/crates.io-index"
  991. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  992. dependencies = [
  993. "cfg-if",
  994. "pin-project-lite",
  995. "tracing-core",
  996. ]
  997. [[package]]
  998. name = "tracing-core"
  999. version = "0.1.30"
  1000. source = "registry+https://github.com/rust-lang/crates.io-index"
  1001. checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
  1002. dependencies = [
  1003. "once_cell",
  1004. ]
  1005. [[package]]
  1006. name = "unicode-ident"
  1007. version = "1.0.5"
  1008. source = "registry+https://github.com/rust-lang/crates.io-index"
  1009. checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
  1010. [[package]]
  1011. name = "unicode-width"
  1012. version = "0.1.10"
  1013. source = "registry+https://github.com/rust-lang/crates.io-index"
  1014. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  1015. [[package]]
  1016. name = "version_check"
  1017. version = "0.9.4"
  1018. source = "registry+https://github.com/rust-lang/crates.io-index"
  1019. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  1020. [[package]]
  1021. name = "virtual_display"
  1022. version = "0.1.0"
  1023. dependencies = [
  1024. "dylib_virtual_display",
  1025. "hbb_common",
  1026. "lazy_static",
  1027. "libloading",
  1028. ]
  1029. [[package]]
  1030. name = "walkdir"
  1031. version = "2.3.2"
  1032. source = "registry+https://github.com/rust-lang/crates.io-index"
  1033. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  1034. dependencies = [
  1035. "same-file",
  1036. "winapi",
  1037. "winapi-util",
  1038. ]
  1039. [[package]]
  1040. name = "wasi"
  1041. version = "0.10.0+wasi-snapshot-preview1"
  1042. source = "registry+https://github.com/rust-lang/crates.io-index"
  1043. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  1044. [[package]]
  1045. name = "wasi"
  1046. version = "0.11.0+wasi-snapshot-preview1"
  1047. source = "registry+https://github.com/rust-lang/crates.io-index"
  1048. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1049. [[package]]
  1050. name = "wasm-bindgen"
  1051. version = "0.2.83"
  1052. source = "registry+https://github.com/rust-lang/crates.io-index"
  1053. checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
  1054. dependencies = [
  1055. "cfg-if",
  1056. "wasm-bindgen-macro",
  1057. ]
  1058. [[package]]
  1059. name = "wasm-bindgen-backend"
  1060. version = "0.2.83"
  1061. source = "registry+https://github.com/rust-lang/crates.io-index"
  1062. checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
  1063. dependencies = [
  1064. "bumpalo",
  1065. "log",
  1066. "once_cell",
  1067. "proc-macro2",
  1068. "quote",
  1069. "syn",
  1070. "wasm-bindgen-shared",
  1071. ]
  1072. [[package]]
  1073. name = "wasm-bindgen-macro"
  1074. version = "0.2.83"
  1075. source = "registry+https://github.com/rust-lang/crates.io-index"
  1076. checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
  1077. dependencies = [
  1078. "quote",
  1079. "wasm-bindgen-macro-support",
  1080. ]
  1081. [[package]]
  1082. name = "wasm-bindgen-macro-support"
  1083. version = "0.2.83"
  1084. source = "registry+https://github.com/rust-lang/crates.io-index"
  1085. checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
  1086. dependencies = [
  1087. "proc-macro2",
  1088. "quote",
  1089. "syn",
  1090. "wasm-bindgen-backend",
  1091. "wasm-bindgen-shared",
  1092. ]
  1093. [[package]]
  1094. name = "wasm-bindgen-shared"
  1095. version = "0.2.83"
  1096. source = "registry+https://github.com/rust-lang/crates.io-index"
  1097. checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
  1098. [[package]]
  1099. name = "which"
  1100. version = "4.3.0"
  1101. source = "registry+https://github.com/rust-lang/crates.io-index"
  1102. checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
  1103. dependencies = [
  1104. "either",
  1105. "libc",
  1106. "once_cell",
  1107. ]
  1108. [[package]]
  1109. name = "winapi"
  1110. version = "0.3.9"
  1111. source = "registry+https://github.com/rust-lang/crates.io-index"
  1112. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1113. dependencies = [
  1114. "winapi-i686-pc-windows-gnu",
  1115. "winapi-x86_64-pc-windows-gnu",
  1116. ]
  1117. [[package]]
  1118. name = "winapi-i686-pc-windows-gnu"
  1119. version = "0.4.0"
  1120. source = "registry+https://github.com/rust-lang/crates.io-index"
  1121. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1122. [[package]]
  1123. name = "winapi-util"
  1124. version = "0.1.5"
  1125. source = "registry+https://github.com/rust-lang/crates.io-index"
  1126. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  1127. dependencies = [
  1128. "winapi",
  1129. ]
  1130. [[package]]
  1131. name = "winapi-x86_64-pc-windows-gnu"
  1132. version = "0.4.0"
  1133. source = "registry+https://github.com/rust-lang/crates.io-index"
  1134. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1135. [[package]]
  1136. name = "windows-sys"
  1137. version = "0.42.0"
  1138. source = "registry+https://github.com/rust-lang/crates.io-index"
  1139. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  1140. dependencies = [
  1141. "windows_aarch64_gnullvm",
  1142. "windows_aarch64_msvc",
  1143. "windows_i686_gnu",
  1144. "windows_i686_msvc",
  1145. "windows_x86_64_gnu",
  1146. "windows_x86_64_gnullvm",
  1147. "windows_x86_64_msvc",
  1148. ]
  1149. [[package]]
  1150. name = "windows_aarch64_gnullvm"
  1151. version = "0.42.0"
  1152. source = "registry+https://github.com/rust-lang/crates.io-index"
  1153. checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
  1154. [[package]]
  1155. name = "windows_aarch64_msvc"
  1156. version = "0.42.0"
  1157. source = "registry+https://github.com/rust-lang/crates.io-index"
  1158. checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
  1159. [[package]]
  1160. name = "windows_i686_gnu"
  1161. version = "0.42.0"
  1162. source = "registry+https://github.com/rust-lang/crates.io-index"
  1163. checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
  1164. [[package]]
  1165. name = "windows_i686_msvc"
  1166. version = "0.42.0"
  1167. source = "registry+https://github.com/rust-lang/crates.io-index"
  1168. checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
  1169. [[package]]
  1170. name = "windows_x86_64_gnu"
  1171. version = "0.42.0"
  1172. source = "registry+https://github.com/rust-lang/crates.io-index"
  1173. checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
  1174. [[package]]
  1175. name = "windows_x86_64_gnullvm"
  1176. version = "0.42.0"
  1177. source = "registry+https://github.com/rust-lang/crates.io-index"
  1178. checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
  1179. [[package]]
  1180. name = "windows_x86_64_msvc"
  1181. version = "0.42.0"
  1182. source = "registry+https://github.com/rust-lang/crates.io-index"
  1183. checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
  1184. [[package]]
  1185. name = "winreg"
  1186. version = "0.6.2"
  1187. source = "registry+https://github.com/rust-lang/crates.io-index"
  1188. checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
  1189. dependencies = [
  1190. "winapi",
  1191. ]
  1192. [[package]]
  1193. name = "zstd"
  1194. version = "0.9.2+zstd.1.5.1"
  1195. source = "registry+https://github.com/rust-lang/crates.io-index"
  1196. checksum = "2390ea1bf6c038c39674f22d95f0564725fc06034a47129179810b2fc58caa54"
  1197. dependencies = [
  1198. "zstd-safe",
  1199. ]
  1200. [[package]]
  1201. name = "zstd-safe"
  1202. version = "4.1.3+zstd.1.5.1"
  1203. source = "registry+https://github.com/rust-lang/crates.io-index"
  1204. checksum = "e99d81b99fb3c2c2c794e3fe56c305c63d5173a16a46b5850b07c935ffc7db79"
  1205. dependencies = [
  1206. "libc",
  1207. "zstd-sys",
  1208. ]
  1209. [[package]]
  1210. name = "zstd-sys"
  1211. version = "1.6.2+zstd.1.5.1"
  1212. source = "registry+https://github.com/rust-lang/crates.io-index"
  1213. checksum = "2daf2f248d9ea44454bfcb2516534e8b8ad2fc91bf818a1885495fc42bc8ac9f"
  1214. dependencies = [
  1215. "cc",
  1216. "libc",
  1217. ]