Cargo.lock 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "addr2line"
  6. version = "0.17.0"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
  9. dependencies = [
  10. "gimli",
  11. ]
  12. [[package]]
  13. name = "adler"
  14. version = "1.0.2"
  15. source = "registry+https://github.com/rust-lang/crates.io-index"
  16. checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
  17. [[package]]
  18. name = "aho-corasick"
  19. version = "0.7.19"
  20. source = "registry+https://github.com/rust-lang/crates.io-index"
  21. checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
  22. dependencies = [
  23. "memchr",
  24. ]
  25. [[package]]
  26. name = "alloc-no-stdlib"
  27. version = "2.0.4"
  28. source = "registry+https://github.com/rust-lang/crates.io-index"
  29. checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
  30. [[package]]
  31. name = "alloc-stdlib"
  32. version = "0.2.2"
  33. source = "registry+https://github.com/rust-lang/crates.io-index"
  34. checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
  35. dependencies = [
  36. "alloc-no-stdlib",
  37. ]
  38. [[package]]
  39. name = "android_system_properties"
  40. version = "0.1.5"
  41. source = "registry+https://github.com/rust-lang/crates.io-index"
  42. checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
  43. dependencies = [
  44. "libc",
  45. ]
  46. [[package]]
  47. name = "anes"
  48. version = "0.1.6"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
  51. [[package]]
  52. name = "ansi_term"
  53. version = "0.12.1"
  54. source = "registry+https://github.com/rust-lang/crates.io-index"
  55. checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
  56. dependencies = [
  57. "winapi",
  58. ]
  59. [[package]]
  60. name = "anyhow"
  61. version = "1.0.66"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
  64. dependencies = [
  65. "backtrace",
  66. ]
  67. [[package]]
  68. name = "arc-swap"
  69. version = "1.5.1"
  70. source = "registry+https://github.com/rust-lang/crates.io-index"
  71. checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164"
  72. [[package]]
  73. name = "atty"
  74. version = "0.2.14"
  75. source = "registry+https://github.com/rust-lang/crates.io-index"
  76. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  77. dependencies = [
  78. "hermit-abi",
  79. "libc",
  80. "winapi",
  81. ]
  82. [[package]]
  83. name = "autocfg"
  84. version = "1.1.0"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
  87. [[package]]
  88. name = "backtrace"
  89. version = "0.3.66"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
  92. dependencies = [
  93. "addr2line",
  94. "cc",
  95. "cfg-if",
  96. "libc",
  97. "miniz_oxide",
  98. "object",
  99. "rustc-demangle",
  100. ]
  101. [[package]]
  102. name = "base64"
  103. version = "0.13.0"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
  106. [[package]]
  107. name = "base64-url"
  108. version = "1.4.13"
  109. source = "registry+https://github.com/rust-lang/crates.io-index"
  110. checksum = "67a99c239d0c7e77c85dddfa9cebce48704b3c49550fcd3b84dd637e4484899f"
  111. dependencies = [
  112. "base64",
  113. ]
  114. [[package]]
  115. name = "bindgen"
  116. version = "0.59.2"
  117. source = "registry+https://github.com/rust-lang/crates.io-index"
  118. checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
  119. dependencies = [
  120. "bitflags",
  121. "cexpr",
  122. "clang-sys",
  123. "clap 2.34.0",
  124. "env_logger",
  125. "lazy_static",
  126. "lazycell",
  127. "log",
  128. "peeking_take_while",
  129. "proc-macro2",
  130. "quote",
  131. "regex",
  132. "rustc-hash",
  133. "shlex",
  134. "which",
  135. ]
  136. [[package]]
  137. name = "bitfield"
  138. version = "0.13.2"
  139. source = "registry+https://github.com/rust-lang/crates.io-index"
  140. checksum = "46afbd2983a5d5a7bd740ccb198caf5b82f45c40c09c0eed36052d91cb92e719"
  141. [[package]]
  142. name = "bitflags"
  143. version = "1.3.2"
  144. source = "registry+https://github.com/rust-lang/crates.io-index"
  145. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  146. [[package]]
  147. name = "brotli"
  148. version = "3.3.4"
  149. source = "registry+https://github.com/rust-lang/crates.io-index"
  150. checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
  151. dependencies = [
  152. "alloc-no-stdlib",
  153. "alloc-stdlib",
  154. "brotli-decompressor",
  155. ]
  156. [[package]]
  157. name = "brotli-decompressor"
  158. version = "2.3.2"
  159. source = "registry+https://github.com/rust-lang/crates.io-index"
  160. checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
  161. dependencies = [
  162. "alloc-no-stdlib",
  163. "alloc-stdlib",
  164. ]
  165. [[package]]
  166. name = "btfs"
  167. version = "0.1.0"
  168. dependencies = [
  169. "btlib",
  170. "btmsg",
  171. "log",
  172. "tss-esapi",
  173. ]
  174. [[package]]
  175. name = "btfuse"
  176. version = "0.1.0"
  177. dependencies = [
  178. "btlib",
  179. "env_logger",
  180. "fuse-backend-rs",
  181. "libc",
  182. "log",
  183. "swtpm-harness",
  184. "tempdir",
  185. "tss-esapi",
  186. ]
  187. [[package]]
  188. name = "btlib"
  189. version = "0.1.0"
  190. dependencies = [
  191. "anyhow",
  192. "base64-url",
  193. "brotli",
  194. "btserde",
  195. "chrono",
  196. "criterion",
  197. "ctor",
  198. "env_logger",
  199. "foreign-types",
  200. "fuse-backend-rs",
  201. "harness",
  202. "lazy_static",
  203. "libc",
  204. "log",
  205. "openssl",
  206. "positioned-io",
  207. "serde",
  208. "serde-big-array",
  209. "static_assertions",
  210. "strum",
  211. "strum_macros",
  212. "swtpm-harness",
  213. "tempdir",
  214. "tss-esapi",
  215. "tss-esapi-sys",
  216. "vm-memory",
  217. "zeroize",
  218. ]
  219. [[package]]
  220. name = "btmsg"
  221. version = "0.1.0"
  222. dependencies = [
  223. "btlib",
  224. "btserde",
  225. "bytes",
  226. "futures",
  227. "lazy_static",
  228. "serde",
  229. "tempdir",
  230. "tokio",
  231. "tokio-util",
  232. "zerocopy",
  233. ]
  234. [[package]]
  235. name = "btnode"
  236. version = "0.1.0"
  237. dependencies = [
  238. "btlib",
  239. "btserde",
  240. "env_logger",
  241. "harness",
  242. "log",
  243. ]
  244. [[package]]
  245. name = "btserde"
  246. version = "0.1.0"
  247. dependencies = [
  248. "serde",
  249. "serde-big-array",
  250. ]
  251. [[package]]
  252. name = "bumpalo"
  253. version = "3.11.1"
  254. source = "registry+https://github.com/rust-lang/crates.io-index"
  255. checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
  256. [[package]]
  257. name = "byteorder"
  258. version = "1.4.3"
  259. source = "registry+https://github.com/rust-lang/crates.io-index"
  260. checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
  261. [[package]]
  262. name = "bytes"
  263. version = "1.3.0"
  264. source = "registry+https://github.com/rust-lang/crates.io-index"
  265. checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
  266. [[package]]
  267. name = "caps"
  268. version = "0.5.4"
  269. source = "registry+https://github.com/rust-lang/crates.io-index"
  270. checksum = "938c50180feacea622ef3b8f4a496057c868dcf8ac7a64d781dd8f3f51a9c143"
  271. dependencies = [
  272. "libc",
  273. "thiserror",
  274. ]
  275. [[package]]
  276. name = "cast"
  277. version = "0.3.0"
  278. source = "registry+https://github.com/rust-lang/crates.io-index"
  279. checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
  280. [[package]]
  281. name = "cc"
  282. version = "1.0.73"
  283. source = "registry+https://github.com/rust-lang/crates.io-index"
  284. checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
  285. [[package]]
  286. name = "cexpr"
  287. version = "0.6.0"
  288. source = "registry+https://github.com/rust-lang/crates.io-index"
  289. checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
  290. dependencies = [
  291. "nom",
  292. ]
  293. [[package]]
  294. name = "cfg-if"
  295. version = "1.0.0"
  296. source = "registry+https://github.com/rust-lang/crates.io-index"
  297. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  298. [[package]]
  299. name = "chrono"
  300. version = "0.4.23"
  301. source = "registry+https://github.com/rust-lang/crates.io-index"
  302. checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
  303. dependencies = [
  304. "iana-time-zone",
  305. "js-sys",
  306. "num-integer",
  307. "num-traits",
  308. "time",
  309. "wasm-bindgen",
  310. "winapi",
  311. ]
  312. [[package]]
  313. name = "ciborium"
  314. version = "0.2.0"
  315. source = "registry+https://github.com/rust-lang/crates.io-index"
  316. checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f"
  317. dependencies = [
  318. "ciborium-io",
  319. "ciborium-ll",
  320. "serde",
  321. ]
  322. [[package]]
  323. name = "ciborium-io"
  324. version = "0.2.0"
  325. source = "registry+https://github.com/rust-lang/crates.io-index"
  326. checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369"
  327. [[package]]
  328. name = "ciborium-ll"
  329. version = "0.2.0"
  330. source = "registry+https://github.com/rust-lang/crates.io-index"
  331. checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b"
  332. dependencies = [
  333. "ciborium-io",
  334. "half",
  335. ]
  336. [[package]]
  337. name = "clang-sys"
  338. version = "1.4.0"
  339. source = "registry+https://github.com/rust-lang/crates.io-index"
  340. checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
  341. dependencies = [
  342. "glob",
  343. "libc",
  344. "libloading",
  345. ]
  346. [[package]]
  347. name = "clap"
  348. version = "2.34.0"
  349. source = "registry+https://github.com/rust-lang/crates.io-index"
  350. checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
  351. dependencies = [
  352. "ansi_term",
  353. "atty",
  354. "bitflags",
  355. "strsim",
  356. "textwrap 0.11.0",
  357. "unicode-width",
  358. "vec_map",
  359. ]
  360. [[package]]
  361. name = "clap"
  362. version = "3.2.23"
  363. source = "registry+https://github.com/rust-lang/crates.io-index"
  364. checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5"
  365. dependencies = [
  366. "bitflags",
  367. "clap_lex",
  368. "indexmap",
  369. "textwrap 0.16.0",
  370. ]
  371. [[package]]
  372. name = "clap_lex"
  373. version = "0.2.4"
  374. source = "registry+https://github.com/rust-lang/crates.io-index"
  375. checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
  376. dependencies = [
  377. "os_str_bytes",
  378. ]
  379. [[package]]
  380. name = "codespan-reporting"
  381. version = "0.11.1"
  382. source = "registry+https://github.com/rust-lang/crates.io-index"
  383. checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
  384. dependencies = [
  385. "termcolor",
  386. "unicode-width",
  387. ]
  388. [[package]]
  389. name = "core-foundation-sys"
  390. version = "0.8.3"
  391. source = "registry+https://github.com/rust-lang/crates.io-index"
  392. checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
  393. [[package]]
  394. name = "criterion"
  395. version = "0.4.0"
  396. source = "registry+https://github.com/rust-lang/crates.io-index"
  397. checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb"
  398. dependencies = [
  399. "anes",
  400. "atty",
  401. "cast",
  402. "ciborium",
  403. "clap 3.2.23",
  404. "criterion-plot",
  405. "itertools",
  406. "lazy_static",
  407. "num-traits",
  408. "oorandom",
  409. "plotters",
  410. "rayon",
  411. "regex",
  412. "serde",
  413. "serde_derive",
  414. "serde_json",
  415. "tinytemplate",
  416. "walkdir",
  417. ]
  418. [[package]]
  419. name = "criterion-plot"
  420. version = "0.5.0"
  421. source = "registry+https://github.com/rust-lang/crates.io-index"
  422. checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
  423. dependencies = [
  424. "cast",
  425. "itertools",
  426. ]
  427. [[package]]
  428. name = "crossbeam-channel"
  429. version = "0.5.6"
  430. source = "registry+https://github.com/rust-lang/crates.io-index"
  431. checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
  432. dependencies = [
  433. "cfg-if",
  434. "crossbeam-utils",
  435. ]
  436. [[package]]
  437. name = "crossbeam-deque"
  438. version = "0.8.2"
  439. source = "registry+https://github.com/rust-lang/crates.io-index"
  440. checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
  441. dependencies = [
  442. "cfg-if",
  443. "crossbeam-epoch",
  444. "crossbeam-utils",
  445. ]
  446. [[package]]
  447. name = "crossbeam-epoch"
  448. version = "0.9.13"
  449. source = "registry+https://github.com/rust-lang/crates.io-index"
  450. checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
  451. dependencies = [
  452. "autocfg",
  453. "cfg-if",
  454. "crossbeam-utils",
  455. "memoffset 0.7.1",
  456. "scopeguard",
  457. ]
  458. [[package]]
  459. name = "crossbeam-utils"
  460. version = "0.8.14"
  461. source = "registry+https://github.com/rust-lang/crates.io-index"
  462. checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
  463. dependencies = [
  464. "cfg-if",
  465. ]
  466. [[package]]
  467. name = "ctor"
  468. version = "0.1.23"
  469. source = "registry+https://github.com/rust-lang/crates.io-index"
  470. checksum = "cdffe87e1d521a10f9696f833fe502293ea446d7f256c06128293a4119bdf4cb"
  471. dependencies = [
  472. "quote",
  473. "syn",
  474. ]
  475. [[package]]
  476. name = "cxx"
  477. version = "1.0.82"
  478. source = "registry+https://github.com/rust-lang/crates.io-index"
  479. checksum = "d4a41a86530d0fe7f5d9ea779916b7cadd2d4f9add748b99c2c029cbbdfaf453"
  480. dependencies = [
  481. "cc",
  482. "cxxbridge-flags",
  483. "cxxbridge-macro",
  484. "link-cplusplus",
  485. ]
  486. [[package]]
  487. name = "cxx-build"
  488. version = "1.0.82"
  489. source = "registry+https://github.com/rust-lang/crates.io-index"
  490. checksum = "06416d667ff3e3ad2df1cd8cd8afae5da26cf9cec4d0825040f88b5ca659a2f0"
  491. dependencies = [
  492. "cc",
  493. "codespan-reporting",
  494. "once_cell",
  495. "proc-macro2",
  496. "quote",
  497. "scratch",
  498. "syn",
  499. ]
  500. [[package]]
  501. name = "cxxbridge-flags"
  502. version = "1.0.82"
  503. source = "registry+https://github.com/rust-lang/crates.io-index"
  504. checksum = "820a9a2af1669deeef27cb271f476ffd196a2c4b6731336011e0ba63e2c7cf71"
  505. [[package]]
  506. name = "cxxbridge-macro"
  507. version = "1.0.82"
  508. source = "registry+https://github.com/rust-lang/crates.io-index"
  509. checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470"
  510. dependencies = [
  511. "proc-macro2",
  512. "quote",
  513. "syn",
  514. ]
  515. [[package]]
  516. name = "dbus"
  517. version = "0.9.6"
  518. source = "registry+https://github.com/rust-lang/crates.io-index"
  519. checksum = "6f8bcdd56d2e5c4ed26a529c5a9029f5db8290d433497506f958eae3be148eb6"
  520. dependencies = [
  521. "libc",
  522. "libdbus-sys",
  523. "winapi",
  524. ]
  525. [[package]]
  526. name = "either"
  527. version = "1.8.0"
  528. source = "registry+https://github.com/rust-lang/crates.io-index"
  529. checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
  530. [[package]]
  531. name = "enumflags2"
  532. version = "0.7.5"
  533. source = "registry+https://github.com/rust-lang/crates.io-index"
  534. checksum = "e75d4cd21b95383444831539909fbb14b9dc3fdceb2a6f5d36577329a1f55ccb"
  535. dependencies = [
  536. "enumflags2_derive",
  537. ]
  538. [[package]]
  539. name = "enumflags2_derive"
  540. version = "0.7.4"
  541. source = "registry+https://github.com/rust-lang/crates.io-index"
  542. checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae"
  543. dependencies = [
  544. "proc-macro2",
  545. "quote",
  546. "syn",
  547. ]
  548. [[package]]
  549. name = "env_logger"
  550. version = "0.9.1"
  551. source = "registry+https://github.com/rust-lang/crates.io-index"
  552. checksum = "c90bf5f19754d10198ccb95b70664fc925bd1fc090a0fd9a6ebc54acc8cd6272"
  553. dependencies = [
  554. "atty",
  555. "humantime",
  556. "log",
  557. "regex",
  558. "termcolor",
  559. ]
  560. [[package]]
  561. name = "foreign-types"
  562. version = "0.3.2"
  563. source = "registry+https://github.com/rust-lang/crates.io-index"
  564. checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
  565. dependencies = [
  566. "foreign-types-shared",
  567. ]
  568. [[package]]
  569. name = "foreign-types-shared"
  570. version = "0.1.1"
  571. source = "registry+https://github.com/rust-lang/crates.io-index"
  572. checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
  573. [[package]]
  574. name = "fuchsia-cprng"
  575. version = "0.1.1"
  576. source = "registry+https://github.com/rust-lang/crates.io-index"
  577. checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
  578. [[package]]
  579. name = "fuse-backend-rs"
  580. version = "0.9.6"
  581. source = "registry+https://github.com/rust-lang/crates.io-index"
  582. checksum = "994a3bfb694ee52bf8f3bca80d784b723f150810998219337e429cc5dbe92717"
  583. dependencies = [
  584. "arc-swap",
  585. "bitflags",
  586. "caps",
  587. "core-foundation-sys",
  588. "io-uring",
  589. "lazy_static",
  590. "libc",
  591. "log",
  592. "mio",
  593. "nix 0.24.2",
  594. "scoped-tls",
  595. "slab",
  596. "socket2",
  597. "tokio-uring",
  598. "vm-memory",
  599. "vmm-sys-util",
  600. ]
  601. [[package]]
  602. name = "futures"
  603. version = "0.3.25"
  604. source = "registry+https://github.com/rust-lang/crates.io-index"
  605. checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
  606. dependencies = [
  607. "futures-channel",
  608. "futures-core",
  609. "futures-executor",
  610. "futures-io",
  611. "futures-sink",
  612. "futures-task",
  613. "futures-util",
  614. ]
  615. [[package]]
  616. name = "futures-channel"
  617. version = "0.3.25"
  618. source = "registry+https://github.com/rust-lang/crates.io-index"
  619. checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
  620. dependencies = [
  621. "futures-core",
  622. "futures-sink",
  623. ]
  624. [[package]]
  625. name = "futures-core"
  626. version = "0.3.25"
  627. source = "registry+https://github.com/rust-lang/crates.io-index"
  628. checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
  629. [[package]]
  630. name = "futures-executor"
  631. version = "0.3.25"
  632. source = "registry+https://github.com/rust-lang/crates.io-index"
  633. checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
  634. dependencies = [
  635. "futures-core",
  636. "futures-task",
  637. "futures-util",
  638. ]
  639. [[package]]
  640. name = "futures-io"
  641. version = "0.3.25"
  642. source = "registry+https://github.com/rust-lang/crates.io-index"
  643. checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
  644. [[package]]
  645. name = "futures-macro"
  646. version = "0.3.25"
  647. source = "registry+https://github.com/rust-lang/crates.io-index"
  648. checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
  649. dependencies = [
  650. "proc-macro2",
  651. "quote",
  652. "syn",
  653. ]
  654. [[package]]
  655. name = "futures-sink"
  656. version = "0.3.25"
  657. source = "registry+https://github.com/rust-lang/crates.io-index"
  658. checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
  659. [[package]]
  660. name = "futures-task"
  661. version = "0.3.25"
  662. source = "registry+https://github.com/rust-lang/crates.io-index"
  663. checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
  664. [[package]]
  665. name = "futures-util"
  666. version = "0.3.25"
  667. source = "registry+https://github.com/rust-lang/crates.io-index"
  668. checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
  669. dependencies = [
  670. "futures-channel",
  671. "futures-core",
  672. "futures-io",
  673. "futures-macro",
  674. "futures-sink",
  675. "futures-task",
  676. "memchr",
  677. "pin-project-lite",
  678. "pin-utils",
  679. "slab",
  680. ]
  681. [[package]]
  682. name = "gimli"
  683. version = "0.26.2"
  684. source = "registry+https://github.com/rust-lang/crates.io-index"
  685. checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
  686. [[package]]
  687. name = "glob"
  688. version = "0.3.0"
  689. source = "registry+https://github.com/rust-lang/crates.io-index"
  690. checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
  691. [[package]]
  692. name = "half"
  693. version = "1.8.2"
  694. source = "registry+https://github.com/rust-lang/crates.io-index"
  695. checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
  696. [[package]]
  697. name = "harness"
  698. version = "0.0.1"
  699. dependencies = [
  700. "btserde",
  701. "ctor",
  702. "env_logger",
  703. "log",
  704. "serde",
  705. ]
  706. [[package]]
  707. name = "hashbrown"
  708. version = "0.12.3"
  709. source = "registry+https://github.com/rust-lang/crates.io-index"
  710. checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
  711. [[package]]
  712. name = "heck"
  713. version = "0.4.0"
  714. source = "registry+https://github.com/rust-lang/crates.io-index"
  715. checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
  716. [[package]]
  717. name = "hermit-abi"
  718. version = "0.1.19"
  719. source = "registry+https://github.com/rust-lang/crates.io-index"
  720. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  721. dependencies = [
  722. "libc",
  723. ]
  724. [[package]]
  725. name = "hostname-validator"
  726. version = "1.1.1"
  727. source = "registry+https://github.com/rust-lang/crates.io-index"
  728. checksum = "f558a64ac9af88b5ba400d99b579451af0d39c6d360980045b91aac966d705e2"
  729. [[package]]
  730. name = "humantime"
  731. version = "2.1.0"
  732. source = "registry+https://github.com/rust-lang/crates.io-index"
  733. checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
  734. [[package]]
  735. name = "iana-time-zone"
  736. version = "0.1.53"
  737. source = "registry+https://github.com/rust-lang/crates.io-index"
  738. checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
  739. dependencies = [
  740. "android_system_properties",
  741. "core-foundation-sys",
  742. "iana-time-zone-haiku",
  743. "js-sys",
  744. "wasm-bindgen",
  745. "winapi",
  746. ]
  747. [[package]]
  748. name = "iana-time-zone-haiku"
  749. version = "0.1.1"
  750. source = "registry+https://github.com/rust-lang/crates.io-index"
  751. checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
  752. dependencies = [
  753. "cxx",
  754. "cxx-build",
  755. ]
  756. [[package]]
  757. name = "indexmap"
  758. version = "1.9.2"
  759. source = "registry+https://github.com/rust-lang/crates.io-index"
  760. checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
  761. dependencies = [
  762. "autocfg",
  763. "hashbrown",
  764. ]
  765. [[package]]
  766. name = "io-uring"
  767. version = "0.5.7"
  768. source = "registry+https://github.com/rust-lang/crates.io-index"
  769. checksum = "6d32c9c053ad47572e11da8bce622ed4c9ae9dedac5b7f678a2e876d1494d4c4"
  770. dependencies = [
  771. "bitflags",
  772. "libc",
  773. ]
  774. [[package]]
  775. name = "itertools"
  776. version = "0.10.5"
  777. source = "registry+https://github.com/rust-lang/crates.io-index"
  778. checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
  779. dependencies = [
  780. "either",
  781. ]
  782. [[package]]
  783. name = "itoa"
  784. version = "1.0.4"
  785. source = "registry+https://github.com/rust-lang/crates.io-index"
  786. checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
  787. [[package]]
  788. name = "js-sys"
  789. version = "0.3.60"
  790. source = "registry+https://github.com/rust-lang/crates.io-index"
  791. checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
  792. dependencies = [
  793. "wasm-bindgen",
  794. ]
  795. [[package]]
  796. name = "lazy_static"
  797. version = "1.4.0"
  798. source = "registry+https://github.com/rust-lang/crates.io-index"
  799. checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
  800. [[package]]
  801. name = "lazycell"
  802. version = "1.3.0"
  803. source = "registry+https://github.com/rust-lang/crates.io-index"
  804. checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
  805. [[package]]
  806. name = "libc"
  807. version = "0.2.137"
  808. source = "registry+https://github.com/rust-lang/crates.io-index"
  809. checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
  810. [[package]]
  811. name = "libdbus-sys"
  812. version = "0.2.2"
  813. source = "registry+https://github.com/rust-lang/crates.io-index"
  814. checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b"
  815. dependencies = [
  816. "pkg-config",
  817. ]
  818. [[package]]
  819. name = "libloading"
  820. version = "0.7.3"
  821. source = "registry+https://github.com/rust-lang/crates.io-index"
  822. checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
  823. dependencies = [
  824. "cfg-if",
  825. "winapi",
  826. ]
  827. [[package]]
  828. name = "link-cplusplus"
  829. version = "1.0.7"
  830. source = "registry+https://github.com/rust-lang/crates.io-index"
  831. checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
  832. dependencies = [
  833. "cc",
  834. ]
  835. [[package]]
  836. name = "log"
  837. version = "0.4.17"
  838. source = "registry+https://github.com/rust-lang/crates.io-index"
  839. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  840. dependencies = [
  841. "cfg-if",
  842. ]
  843. [[package]]
  844. name = "mbox"
  845. version = "0.6.0"
  846. source = "registry+https://github.com/rust-lang/crates.io-index"
  847. checksum = "0f88d5c34d63aad11aa4321ef55ccb064af58b3ad8091079ae22bf83e5eb75d6"
  848. dependencies = [
  849. "libc",
  850. "rustc_version",
  851. "stable_deref_trait",
  852. ]
  853. [[package]]
  854. name = "memchr"
  855. version = "2.5.0"
  856. source = "registry+https://github.com/rust-lang/crates.io-index"
  857. checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
  858. [[package]]
  859. name = "memoffset"
  860. version = "0.6.5"
  861. source = "registry+https://github.com/rust-lang/crates.io-index"
  862. checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
  863. dependencies = [
  864. "autocfg",
  865. ]
  866. [[package]]
  867. name = "memoffset"
  868. version = "0.7.1"
  869. source = "registry+https://github.com/rust-lang/crates.io-index"
  870. checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
  871. dependencies = [
  872. "autocfg",
  873. ]
  874. [[package]]
  875. name = "minimal-lexical"
  876. version = "0.2.1"
  877. source = "registry+https://github.com/rust-lang/crates.io-index"
  878. checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
  879. [[package]]
  880. name = "miniz_oxide"
  881. version = "0.5.4"
  882. source = "registry+https://github.com/rust-lang/crates.io-index"
  883. checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
  884. dependencies = [
  885. "adler",
  886. ]
  887. [[package]]
  888. name = "mio"
  889. version = "0.8.4"
  890. source = "registry+https://github.com/rust-lang/crates.io-index"
  891. checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
  892. dependencies = [
  893. "libc",
  894. "log",
  895. "wasi 0.11.0+wasi-snapshot-preview1",
  896. "windows-sys 0.36.1",
  897. ]
  898. [[package]]
  899. name = "nix"
  900. version = "0.24.2"
  901. source = "registry+https://github.com/rust-lang/crates.io-index"
  902. checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc"
  903. dependencies = [
  904. "bitflags",
  905. "cfg-if",
  906. "libc",
  907. "memoffset 0.6.5",
  908. ]
  909. [[package]]
  910. name = "nix"
  911. version = "0.25.0"
  912. source = "registry+https://github.com/rust-lang/crates.io-index"
  913. checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb"
  914. dependencies = [
  915. "autocfg",
  916. "bitflags",
  917. "cfg-if",
  918. "libc",
  919. "memoffset 0.6.5",
  920. "pin-utils",
  921. ]
  922. [[package]]
  923. name = "nom"
  924. version = "7.1.1"
  925. source = "registry+https://github.com/rust-lang/crates.io-index"
  926. checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
  927. dependencies = [
  928. "memchr",
  929. "minimal-lexical",
  930. ]
  931. [[package]]
  932. name = "num-derive"
  933. version = "0.3.3"
  934. source = "registry+https://github.com/rust-lang/crates.io-index"
  935. checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
  936. dependencies = [
  937. "proc-macro2",
  938. "quote",
  939. "syn",
  940. ]
  941. [[package]]
  942. name = "num-integer"
  943. version = "0.1.45"
  944. source = "registry+https://github.com/rust-lang/crates.io-index"
  945. checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
  946. dependencies = [
  947. "autocfg",
  948. "num-traits",
  949. ]
  950. [[package]]
  951. name = "num-traits"
  952. version = "0.2.15"
  953. source = "registry+https://github.com/rust-lang/crates.io-index"
  954. checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
  955. dependencies = [
  956. "autocfg",
  957. ]
  958. [[package]]
  959. name = "num_cpus"
  960. version = "1.14.0"
  961. source = "registry+https://github.com/rust-lang/crates.io-index"
  962. checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
  963. dependencies = [
  964. "hermit-abi",
  965. "libc",
  966. ]
  967. [[package]]
  968. name = "object"
  969. version = "0.29.0"
  970. source = "registry+https://github.com/rust-lang/crates.io-index"
  971. checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
  972. dependencies = [
  973. "memchr",
  974. ]
  975. [[package]]
  976. name = "oid"
  977. version = "0.2.1"
  978. source = "registry+https://github.com/rust-lang/crates.io-index"
  979. checksum = "9c19903c598813dba001b53beeae59bb77ad4892c5c1b9b3500ce4293a0d06c2"
  980. dependencies = [
  981. "serde",
  982. ]
  983. [[package]]
  984. name = "once_cell"
  985. version = "1.15.0"
  986. source = "registry+https://github.com/rust-lang/crates.io-index"
  987. checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
  988. [[package]]
  989. name = "oorandom"
  990. version = "11.1.3"
  991. source = "registry+https://github.com/rust-lang/crates.io-index"
  992. checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
  993. [[package]]
  994. name = "openssl"
  995. version = "0.10.41"
  996. source = "registry+https://github.com/rust-lang/crates.io-index"
  997. checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
  998. dependencies = [
  999. "bitflags",
  1000. "cfg-if",
  1001. "foreign-types",
  1002. "libc",
  1003. "once_cell",
  1004. "openssl-macros",
  1005. "openssl-sys",
  1006. ]
  1007. [[package]]
  1008. name = "openssl-macros"
  1009. version = "0.1.0"
  1010. source = "registry+https://github.com/rust-lang/crates.io-index"
  1011. checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
  1012. dependencies = [
  1013. "proc-macro2",
  1014. "quote",
  1015. "syn",
  1016. ]
  1017. [[package]]
  1018. name = "openssl-src"
  1019. version = "111.22.0+1.1.1q"
  1020. source = "registry+https://github.com/rust-lang/crates.io-index"
  1021. checksum = "8f31f0d509d1c1ae9cada2f9539ff8f37933831fd5098879e482aa687d659853"
  1022. dependencies = [
  1023. "cc",
  1024. ]
  1025. [[package]]
  1026. name = "openssl-sys"
  1027. version = "0.9.75"
  1028. source = "registry+https://github.com/rust-lang/crates.io-index"
  1029. checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
  1030. dependencies = [
  1031. "autocfg",
  1032. "cc",
  1033. "libc",
  1034. "openssl-src",
  1035. "pkg-config",
  1036. "vcpkg",
  1037. ]
  1038. [[package]]
  1039. name = "os_str_bytes"
  1040. version = "6.4.1"
  1041. source = "registry+https://github.com/rust-lang/crates.io-index"
  1042. checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
  1043. [[package]]
  1044. name = "peeking_take_while"
  1045. version = "0.1.2"
  1046. source = "registry+https://github.com/rust-lang/crates.io-index"
  1047. checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
  1048. [[package]]
  1049. name = "pest"
  1050. version = "2.3.1"
  1051. source = "registry+https://github.com/rust-lang/crates.io-index"
  1052. checksum = "cb779fcf4bb850fbbb0edc96ff6cf34fd90c4b1a112ce042653280d9a7364048"
  1053. dependencies = [
  1054. "thiserror",
  1055. "ucd-trie",
  1056. ]
  1057. [[package]]
  1058. name = "picky-asn1"
  1059. version = "0.3.3"
  1060. source = "registry+https://github.com/rust-lang/crates.io-index"
  1061. checksum = "889bbb26c80acf919e89980dfc8e04eb19df272d8a9893ec9b748d3a1675abde"
  1062. dependencies = [
  1063. "oid",
  1064. "serde",
  1065. "serde_bytes",
  1066. ]
  1067. [[package]]
  1068. name = "picky-asn1-der"
  1069. version = "0.2.5"
  1070. source = "registry+https://github.com/rust-lang/crates.io-index"
  1071. checksum = "acbbd5390ab967396cc7473e6e0848684aec7166e657c6088604e07b54a73dbe"
  1072. dependencies = [
  1073. "picky-asn1",
  1074. "serde",
  1075. "serde_bytes",
  1076. ]
  1077. [[package]]
  1078. name = "picky-asn1-x509"
  1079. version = "0.6.1"
  1080. source = "registry+https://github.com/rust-lang/crates.io-index"
  1081. checksum = "f3033675030de806aba1d5470949701b7c9f1dbf77e3bb17bd12e5f945e560ba"
  1082. dependencies = [
  1083. "base64",
  1084. "oid",
  1085. "picky-asn1",
  1086. "picky-asn1-der",
  1087. "serde",
  1088. ]
  1089. [[package]]
  1090. name = "pin-project-lite"
  1091. version = "0.2.9"
  1092. source = "registry+https://github.com/rust-lang/crates.io-index"
  1093. checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
  1094. [[package]]
  1095. name = "pin-utils"
  1096. version = "0.1.0"
  1097. source = "registry+https://github.com/rust-lang/crates.io-index"
  1098. checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
  1099. [[package]]
  1100. name = "pkg-config"
  1101. version = "0.3.25"
  1102. source = "registry+https://github.com/rust-lang/crates.io-index"
  1103. checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
  1104. [[package]]
  1105. name = "plotters"
  1106. version = "0.3.4"
  1107. source = "registry+https://github.com/rust-lang/crates.io-index"
  1108. checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97"
  1109. dependencies = [
  1110. "num-traits",
  1111. "plotters-backend",
  1112. "plotters-svg",
  1113. "wasm-bindgen",
  1114. "web-sys",
  1115. ]
  1116. [[package]]
  1117. name = "plotters-backend"
  1118. version = "0.3.4"
  1119. source = "registry+https://github.com/rust-lang/crates.io-index"
  1120. checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142"
  1121. [[package]]
  1122. name = "plotters-svg"
  1123. version = "0.3.3"
  1124. source = "registry+https://github.com/rust-lang/crates.io-index"
  1125. checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f"
  1126. dependencies = [
  1127. "plotters-backend",
  1128. ]
  1129. [[package]]
  1130. name = "positioned-io"
  1131. version = "0.3.1"
  1132. source = "registry+https://github.com/rust-lang/crates.io-index"
  1133. checksum = "09b9485cf7f528baf34edd811ec8283a168864912e11d0b7d3e0510738761114"
  1134. dependencies = [
  1135. "byteorder",
  1136. "libc",
  1137. "winapi",
  1138. ]
  1139. [[package]]
  1140. name = "proc-macro2"
  1141. version = "1.0.43"
  1142. source = "registry+https://github.com/rust-lang/crates.io-index"
  1143. checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
  1144. dependencies = [
  1145. "unicode-ident",
  1146. ]
  1147. [[package]]
  1148. name = "quote"
  1149. version = "1.0.21"
  1150. source = "registry+https://github.com/rust-lang/crates.io-index"
  1151. checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
  1152. dependencies = [
  1153. "proc-macro2",
  1154. ]
  1155. [[package]]
  1156. name = "rand"
  1157. version = "0.4.6"
  1158. source = "registry+https://github.com/rust-lang/crates.io-index"
  1159. checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
  1160. dependencies = [
  1161. "fuchsia-cprng",
  1162. "libc",
  1163. "rand_core 0.3.1",
  1164. "rdrand",
  1165. "winapi",
  1166. ]
  1167. [[package]]
  1168. name = "rand_core"
  1169. version = "0.3.1"
  1170. source = "registry+https://github.com/rust-lang/crates.io-index"
  1171. checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
  1172. dependencies = [
  1173. "rand_core 0.4.2",
  1174. ]
  1175. [[package]]
  1176. name = "rand_core"
  1177. version = "0.4.2"
  1178. source = "registry+https://github.com/rust-lang/crates.io-index"
  1179. checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
  1180. [[package]]
  1181. name = "rayon"
  1182. version = "1.6.0"
  1183. source = "registry+https://github.com/rust-lang/crates.io-index"
  1184. checksum = "1e060280438193c554f654141c9ea9417886713b7acd75974c85b18a69a88e0b"
  1185. dependencies = [
  1186. "crossbeam-deque",
  1187. "either",
  1188. "rayon-core",
  1189. ]
  1190. [[package]]
  1191. name = "rayon-core"
  1192. version = "1.10.1"
  1193. source = "registry+https://github.com/rust-lang/crates.io-index"
  1194. checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3"
  1195. dependencies = [
  1196. "crossbeam-channel",
  1197. "crossbeam-deque",
  1198. "crossbeam-utils",
  1199. "num_cpus",
  1200. ]
  1201. [[package]]
  1202. name = "rdrand"
  1203. version = "0.4.0"
  1204. source = "registry+https://github.com/rust-lang/crates.io-index"
  1205. checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
  1206. dependencies = [
  1207. "rand_core 0.3.1",
  1208. ]
  1209. [[package]]
  1210. name = "regex"
  1211. version = "1.6.0"
  1212. source = "registry+https://github.com/rust-lang/crates.io-index"
  1213. checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
  1214. dependencies = [
  1215. "aho-corasick",
  1216. "memchr",
  1217. "regex-syntax",
  1218. ]
  1219. [[package]]
  1220. name = "regex-syntax"
  1221. version = "0.6.27"
  1222. source = "registry+https://github.com/rust-lang/crates.io-index"
  1223. checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
  1224. [[package]]
  1225. name = "remove_dir_all"
  1226. version = "0.5.3"
  1227. source = "registry+https://github.com/rust-lang/crates.io-index"
  1228. checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
  1229. dependencies = [
  1230. "winapi",
  1231. ]
  1232. [[package]]
  1233. name = "rustc-demangle"
  1234. version = "0.1.21"
  1235. source = "registry+https://github.com/rust-lang/crates.io-index"
  1236. checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
  1237. [[package]]
  1238. name = "rustc-hash"
  1239. version = "1.1.0"
  1240. source = "registry+https://github.com/rust-lang/crates.io-index"
  1241. checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
  1242. [[package]]
  1243. name = "rustc_version"
  1244. version = "0.3.3"
  1245. source = "registry+https://github.com/rust-lang/crates.io-index"
  1246. checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
  1247. dependencies = [
  1248. "semver",
  1249. ]
  1250. [[package]]
  1251. name = "rustversion"
  1252. version = "1.0.9"
  1253. source = "registry+https://github.com/rust-lang/crates.io-index"
  1254. checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
  1255. [[package]]
  1256. name = "ryu"
  1257. version = "1.0.11"
  1258. source = "registry+https://github.com/rust-lang/crates.io-index"
  1259. checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
  1260. [[package]]
  1261. name = "same-file"
  1262. version = "1.0.6"
  1263. source = "registry+https://github.com/rust-lang/crates.io-index"
  1264. checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
  1265. dependencies = [
  1266. "winapi-util",
  1267. ]
  1268. [[package]]
  1269. name = "scoped-tls"
  1270. version = "1.0.0"
  1271. source = "registry+https://github.com/rust-lang/crates.io-index"
  1272. checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
  1273. [[package]]
  1274. name = "scopeguard"
  1275. version = "1.1.0"
  1276. source = "registry+https://github.com/rust-lang/crates.io-index"
  1277. checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
  1278. [[package]]
  1279. name = "scratch"
  1280. version = "1.0.2"
  1281. source = "registry+https://github.com/rust-lang/crates.io-index"
  1282. checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
  1283. [[package]]
  1284. name = "semver"
  1285. version = "0.11.0"
  1286. source = "registry+https://github.com/rust-lang/crates.io-index"
  1287. checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
  1288. dependencies = [
  1289. "semver-parser",
  1290. ]
  1291. [[package]]
  1292. name = "semver-parser"
  1293. version = "0.10.2"
  1294. source = "registry+https://github.com/rust-lang/crates.io-index"
  1295. checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
  1296. dependencies = [
  1297. "pest",
  1298. ]
  1299. [[package]]
  1300. name = "serde"
  1301. version = "1.0.144"
  1302. source = "registry+https://github.com/rust-lang/crates.io-index"
  1303. checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860"
  1304. dependencies = [
  1305. "serde_derive",
  1306. ]
  1307. [[package]]
  1308. name = "serde-big-array"
  1309. version = "0.4.1"
  1310. source = "registry+https://github.com/rust-lang/crates.io-index"
  1311. checksum = "3323f09a748af288c3dc2474ea6803ee81f118321775bffa3ac8f7e65c5e90e7"
  1312. dependencies = [
  1313. "serde",
  1314. ]
  1315. [[package]]
  1316. name = "serde_bytes"
  1317. version = "0.11.7"
  1318. source = "registry+https://github.com/rust-lang/crates.io-index"
  1319. checksum = "cfc50e8183eeeb6178dcb167ae34a8051d63535023ae38b5d8d12beae193d37b"
  1320. dependencies = [
  1321. "serde",
  1322. ]
  1323. [[package]]
  1324. name = "serde_derive"
  1325. version = "1.0.144"
  1326. source = "registry+https://github.com/rust-lang/crates.io-index"
  1327. checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00"
  1328. dependencies = [
  1329. "proc-macro2",
  1330. "quote",
  1331. "syn",
  1332. ]
  1333. [[package]]
  1334. name = "serde_json"
  1335. version = "1.0.89"
  1336. source = "registry+https://github.com/rust-lang/crates.io-index"
  1337. checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db"
  1338. dependencies = [
  1339. "itoa",
  1340. "ryu",
  1341. "serde",
  1342. ]
  1343. [[package]]
  1344. name = "shlex"
  1345. version = "1.1.0"
  1346. source = "registry+https://github.com/rust-lang/crates.io-index"
  1347. checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
  1348. [[package]]
  1349. name = "slab"
  1350. version = "0.4.7"
  1351. source = "registry+https://github.com/rust-lang/crates.io-index"
  1352. checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
  1353. dependencies = [
  1354. "autocfg",
  1355. ]
  1356. [[package]]
  1357. name = "socket2"
  1358. version = "0.4.7"
  1359. source = "registry+https://github.com/rust-lang/crates.io-index"
  1360. checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
  1361. dependencies = [
  1362. "libc",
  1363. "winapi",
  1364. ]
  1365. [[package]]
  1366. name = "stable_deref_trait"
  1367. version = "1.2.0"
  1368. source = "registry+https://github.com/rust-lang/crates.io-index"
  1369. checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
  1370. [[package]]
  1371. name = "static_assertions"
  1372. version = "1.1.0"
  1373. source = "registry+https://github.com/rust-lang/crates.io-index"
  1374. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  1375. [[package]]
  1376. name = "strsim"
  1377. version = "0.8.0"
  1378. source = "registry+https://github.com/rust-lang/crates.io-index"
  1379. checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
  1380. [[package]]
  1381. name = "strum"
  1382. version = "0.24.1"
  1383. source = "registry+https://github.com/rust-lang/crates.io-index"
  1384. checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
  1385. dependencies = [
  1386. "strum_macros",
  1387. ]
  1388. [[package]]
  1389. name = "strum_macros"
  1390. version = "0.24.3"
  1391. source = "registry+https://github.com/rust-lang/crates.io-index"
  1392. checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
  1393. dependencies = [
  1394. "heck",
  1395. "proc-macro2",
  1396. "quote",
  1397. "rustversion",
  1398. "syn",
  1399. ]
  1400. [[package]]
  1401. name = "swtpm-harness"
  1402. version = "0.1.0"
  1403. dependencies = [
  1404. "dbus",
  1405. "log",
  1406. "nix 0.25.0",
  1407. "tempdir",
  1408. "tss-esapi",
  1409. ]
  1410. [[package]]
  1411. name = "syn"
  1412. version = "1.0.100"
  1413. source = "registry+https://github.com/rust-lang/crates.io-index"
  1414. checksum = "52205623b1b0f064a4e71182c3b18ae902267282930c6d5462c91b859668426e"
  1415. dependencies = [
  1416. "proc-macro2",
  1417. "quote",
  1418. "unicode-ident",
  1419. ]
  1420. [[package]]
  1421. name = "synstructure"
  1422. version = "0.12.6"
  1423. source = "registry+https://github.com/rust-lang/crates.io-index"
  1424. checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
  1425. dependencies = [
  1426. "proc-macro2",
  1427. "quote",
  1428. "syn",
  1429. "unicode-xid",
  1430. ]
  1431. [[package]]
  1432. name = "target-lexicon"
  1433. version = "0.12.4"
  1434. source = "registry+https://github.com/rust-lang/crates.io-index"
  1435. checksum = "c02424087780c9b71cc96799eaeddff35af2bc513278cda5c99fc1f5d026d3c1"
  1436. [[package]]
  1437. name = "tempdir"
  1438. version = "0.3.7"
  1439. source = "registry+https://github.com/rust-lang/crates.io-index"
  1440. checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
  1441. dependencies = [
  1442. "rand",
  1443. "remove_dir_all",
  1444. ]
  1445. [[package]]
  1446. name = "termcolor"
  1447. version = "1.1.3"
  1448. source = "registry+https://github.com/rust-lang/crates.io-index"
  1449. checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
  1450. dependencies = [
  1451. "winapi-util",
  1452. ]
  1453. [[package]]
  1454. name = "test-harness"
  1455. version = "0.1.0"
  1456. dependencies = [
  1457. "btserde",
  1458. "harness",
  1459. ]
  1460. [[package]]
  1461. name = "textwrap"
  1462. version = "0.11.0"
  1463. source = "registry+https://github.com/rust-lang/crates.io-index"
  1464. checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
  1465. dependencies = [
  1466. "unicode-width",
  1467. ]
  1468. [[package]]
  1469. name = "textwrap"
  1470. version = "0.16.0"
  1471. source = "registry+https://github.com/rust-lang/crates.io-index"
  1472. checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
  1473. [[package]]
  1474. name = "thiserror"
  1475. version = "1.0.37"
  1476. source = "registry+https://github.com/rust-lang/crates.io-index"
  1477. checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
  1478. dependencies = [
  1479. "thiserror-impl",
  1480. ]
  1481. [[package]]
  1482. name = "thiserror-impl"
  1483. version = "1.0.37"
  1484. source = "registry+https://github.com/rust-lang/crates.io-index"
  1485. checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
  1486. dependencies = [
  1487. "proc-macro2",
  1488. "quote",
  1489. "syn",
  1490. ]
  1491. [[package]]
  1492. name = "time"
  1493. version = "0.1.44"
  1494. source = "registry+https://github.com/rust-lang/crates.io-index"
  1495. checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
  1496. dependencies = [
  1497. "libc",
  1498. "wasi 0.10.0+wasi-snapshot-preview1",
  1499. "winapi",
  1500. ]
  1501. [[package]]
  1502. name = "tinytemplate"
  1503. version = "1.2.1"
  1504. source = "registry+https://github.com/rust-lang/crates.io-index"
  1505. checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
  1506. dependencies = [
  1507. "serde",
  1508. "serde_json",
  1509. ]
  1510. [[package]]
  1511. name = "tokio"
  1512. version = "1.23.0"
  1513. source = "registry+https://github.com/rust-lang/crates.io-index"
  1514. checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46"
  1515. dependencies = [
  1516. "autocfg",
  1517. "bytes",
  1518. "libc",
  1519. "memchr",
  1520. "mio",
  1521. "pin-project-lite",
  1522. "socket2",
  1523. "tokio-macros",
  1524. "windows-sys 0.42.0",
  1525. ]
  1526. [[package]]
  1527. name = "tokio-macros"
  1528. version = "1.8.2"
  1529. source = "registry+https://github.com/rust-lang/crates.io-index"
  1530. checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
  1531. dependencies = [
  1532. "proc-macro2",
  1533. "quote",
  1534. "syn",
  1535. ]
  1536. [[package]]
  1537. name = "tokio-uring"
  1538. version = "0.3.0"
  1539. source = "registry+https://github.com/rust-lang/crates.io-index"
  1540. checksum = "d3ad494f39874984d990ade7f6319dafbcd3301ff0b1841f8a55a1ebb3e742c8"
  1541. dependencies = [
  1542. "io-uring",
  1543. "libc",
  1544. "scoped-tls",
  1545. "slab",
  1546. "socket2",
  1547. "tokio",
  1548. ]
  1549. [[package]]
  1550. name = "tokio-util"
  1551. version = "0.7.4"
  1552. source = "registry+https://github.com/rust-lang/crates.io-index"
  1553. checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
  1554. dependencies = [
  1555. "bytes",
  1556. "futures-core",
  1557. "futures-sink",
  1558. "pin-project-lite",
  1559. "tokio",
  1560. "tracing",
  1561. ]
  1562. [[package]]
  1563. name = "tracing"
  1564. version = "0.1.37"
  1565. source = "registry+https://github.com/rust-lang/crates.io-index"
  1566. checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
  1567. dependencies = [
  1568. "cfg-if",
  1569. "pin-project-lite",
  1570. "tracing-core",
  1571. ]
  1572. [[package]]
  1573. name = "tracing-core"
  1574. version = "0.1.30"
  1575. source = "registry+https://github.com/rust-lang/crates.io-index"
  1576. checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
  1577. dependencies = [
  1578. "once_cell",
  1579. ]
  1580. [[package]]
  1581. name = "tss-esapi"
  1582. version = "7.1.0"
  1583. source = "registry+https://github.com/rust-lang/crates.io-index"
  1584. checksum = "a2cca751996d707a593074a115d40a285179f7929f912a4e81d2a8c2404c7e7c"
  1585. dependencies = [
  1586. "bitfield",
  1587. "enumflags2",
  1588. "hostname-validator",
  1589. "log",
  1590. "mbox",
  1591. "num-derive",
  1592. "num-traits",
  1593. "oid",
  1594. "picky-asn1",
  1595. "picky-asn1-x509",
  1596. "regex",
  1597. "serde",
  1598. "tss-esapi-sys",
  1599. "zeroize",
  1600. ]
  1601. [[package]]
  1602. name = "tss-esapi-sys"
  1603. version = "0.3.0"
  1604. source = "registry+https://github.com/rust-lang/crates.io-index"
  1605. checksum = "0e2f37914ec4d494d145cfa18bb8429498b238d63c47a08b89d09c1ec2545ff0"
  1606. dependencies = [
  1607. "bindgen",
  1608. "pkg-config",
  1609. "target-lexicon",
  1610. ]
  1611. [[package]]
  1612. name = "ucd-trie"
  1613. version = "0.1.5"
  1614. source = "registry+https://github.com/rust-lang/crates.io-index"
  1615. checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
  1616. [[package]]
  1617. name = "unicode-ident"
  1618. version = "1.0.4"
  1619. source = "registry+https://github.com/rust-lang/crates.io-index"
  1620. checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
  1621. [[package]]
  1622. name = "unicode-width"
  1623. version = "0.1.10"
  1624. source = "registry+https://github.com/rust-lang/crates.io-index"
  1625. checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
  1626. [[package]]
  1627. name = "unicode-xid"
  1628. version = "0.2.4"
  1629. source = "registry+https://github.com/rust-lang/crates.io-index"
  1630. checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
  1631. [[package]]
  1632. name = "vcpkg"
  1633. version = "0.2.15"
  1634. source = "registry+https://github.com/rust-lang/crates.io-index"
  1635. checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
  1636. [[package]]
  1637. name = "vec_map"
  1638. version = "0.8.2"
  1639. source = "registry+https://github.com/rust-lang/crates.io-index"
  1640. checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
  1641. [[package]]
  1642. name = "vm-memory"
  1643. version = "0.9.0"
  1644. source = "registry+https://github.com/rust-lang/crates.io-index"
  1645. checksum = "583f213899e8a5eea23d9c507252d4bed5bc88f0ecbe0783262f80034630744b"
  1646. dependencies = [
  1647. "libc",
  1648. "winapi",
  1649. ]
  1650. [[package]]
  1651. name = "vmm-sys-util"
  1652. version = "0.10.0"
  1653. source = "registry+https://github.com/rust-lang/crates.io-index"
  1654. checksum = "08604d7be03eb26e33b3cee3ed4aef2bf550b305d1cca60e84da5d28d3790b62"
  1655. dependencies = [
  1656. "bitflags",
  1657. "libc",
  1658. ]
  1659. [[package]]
  1660. name = "walkdir"
  1661. version = "2.3.2"
  1662. source = "registry+https://github.com/rust-lang/crates.io-index"
  1663. checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
  1664. dependencies = [
  1665. "same-file",
  1666. "winapi",
  1667. "winapi-util",
  1668. ]
  1669. [[package]]
  1670. name = "wasi"
  1671. version = "0.10.0+wasi-snapshot-preview1"
  1672. source = "registry+https://github.com/rust-lang/crates.io-index"
  1673. checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
  1674. [[package]]
  1675. name = "wasi"
  1676. version = "0.11.0+wasi-snapshot-preview1"
  1677. source = "registry+https://github.com/rust-lang/crates.io-index"
  1678. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  1679. [[package]]
  1680. name = "wasm-bindgen"
  1681. version = "0.2.83"
  1682. source = "registry+https://github.com/rust-lang/crates.io-index"
  1683. checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
  1684. dependencies = [
  1685. "cfg-if",
  1686. "wasm-bindgen-macro",
  1687. ]
  1688. [[package]]
  1689. name = "wasm-bindgen-backend"
  1690. version = "0.2.83"
  1691. source = "registry+https://github.com/rust-lang/crates.io-index"
  1692. checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
  1693. dependencies = [
  1694. "bumpalo",
  1695. "log",
  1696. "once_cell",
  1697. "proc-macro2",
  1698. "quote",
  1699. "syn",
  1700. "wasm-bindgen-shared",
  1701. ]
  1702. [[package]]
  1703. name = "wasm-bindgen-macro"
  1704. version = "0.2.83"
  1705. source = "registry+https://github.com/rust-lang/crates.io-index"
  1706. checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
  1707. dependencies = [
  1708. "quote",
  1709. "wasm-bindgen-macro-support",
  1710. ]
  1711. [[package]]
  1712. name = "wasm-bindgen-macro-support"
  1713. version = "0.2.83"
  1714. source = "registry+https://github.com/rust-lang/crates.io-index"
  1715. checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
  1716. dependencies = [
  1717. "proc-macro2",
  1718. "quote",
  1719. "syn",
  1720. "wasm-bindgen-backend",
  1721. "wasm-bindgen-shared",
  1722. ]
  1723. [[package]]
  1724. name = "wasm-bindgen-shared"
  1725. version = "0.2.83"
  1726. source = "registry+https://github.com/rust-lang/crates.io-index"
  1727. checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
  1728. [[package]]
  1729. name = "web-sys"
  1730. version = "0.3.60"
  1731. source = "registry+https://github.com/rust-lang/crates.io-index"
  1732. checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
  1733. dependencies = [
  1734. "js-sys",
  1735. "wasm-bindgen",
  1736. ]
  1737. [[package]]
  1738. name = "which"
  1739. version = "4.3.0"
  1740. source = "registry+https://github.com/rust-lang/crates.io-index"
  1741. checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
  1742. dependencies = [
  1743. "either",
  1744. "libc",
  1745. "once_cell",
  1746. ]
  1747. [[package]]
  1748. name = "winapi"
  1749. version = "0.3.9"
  1750. source = "registry+https://github.com/rust-lang/crates.io-index"
  1751. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  1752. dependencies = [
  1753. "winapi-i686-pc-windows-gnu",
  1754. "winapi-x86_64-pc-windows-gnu",
  1755. ]
  1756. [[package]]
  1757. name = "winapi-i686-pc-windows-gnu"
  1758. version = "0.4.0"
  1759. source = "registry+https://github.com/rust-lang/crates.io-index"
  1760. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  1761. [[package]]
  1762. name = "winapi-util"
  1763. version = "0.1.5"
  1764. source = "registry+https://github.com/rust-lang/crates.io-index"
  1765. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  1766. dependencies = [
  1767. "winapi",
  1768. ]
  1769. [[package]]
  1770. name = "winapi-x86_64-pc-windows-gnu"
  1771. version = "0.4.0"
  1772. source = "registry+https://github.com/rust-lang/crates.io-index"
  1773. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  1774. [[package]]
  1775. name = "windows-sys"
  1776. version = "0.36.1"
  1777. source = "registry+https://github.com/rust-lang/crates.io-index"
  1778. checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
  1779. dependencies = [
  1780. "windows_aarch64_msvc 0.36.1",
  1781. "windows_i686_gnu 0.36.1",
  1782. "windows_i686_msvc 0.36.1",
  1783. "windows_x86_64_gnu 0.36.1",
  1784. "windows_x86_64_msvc 0.36.1",
  1785. ]
  1786. [[package]]
  1787. name = "windows-sys"
  1788. version = "0.42.0"
  1789. source = "registry+https://github.com/rust-lang/crates.io-index"
  1790. checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
  1791. dependencies = [
  1792. "windows_aarch64_gnullvm",
  1793. "windows_aarch64_msvc 0.42.0",
  1794. "windows_i686_gnu 0.42.0",
  1795. "windows_i686_msvc 0.42.0",
  1796. "windows_x86_64_gnu 0.42.0",
  1797. "windows_x86_64_gnullvm",
  1798. "windows_x86_64_msvc 0.42.0",
  1799. ]
  1800. [[package]]
  1801. name = "windows_aarch64_gnullvm"
  1802. version = "0.42.0"
  1803. source = "registry+https://github.com/rust-lang/crates.io-index"
  1804. checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
  1805. [[package]]
  1806. name = "windows_aarch64_msvc"
  1807. version = "0.36.1"
  1808. source = "registry+https://github.com/rust-lang/crates.io-index"
  1809. checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
  1810. [[package]]
  1811. name = "windows_aarch64_msvc"
  1812. version = "0.42.0"
  1813. source = "registry+https://github.com/rust-lang/crates.io-index"
  1814. checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
  1815. [[package]]
  1816. name = "windows_i686_gnu"
  1817. version = "0.36.1"
  1818. source = "registry+https://github.com/rust-lang/crates.io-index"
  1819. checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
  1820. [[package]]
  1821. name = "windows_i686_gnu"
  1822. version = "0.42.0"
  1823. source = "registry+https://github.com/rust-lang/crates.io-index"
  1824. checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
  1825. [[package]]
  1826. name = "windows_i686_msvc"
  1827. version = "0.36.1"
  1828. source = "registry+https://github.com/rust-lang/crates.io-index"
  1829. checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
  1830. [[package]]
  1831. name = "windows_i686_msvc"
  1832. version = "0.42.0"
  1833. source = "registry+https://github.com/rust-lang/crates.io-index"
  1834. checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
  1835. [[package]]
  1836. name = "windows_x86_64_gnu"
  1837. version = "0.36.1"
  1838. source = "registry+https://github.com/rust-lang/crates.io-index"
  1839. checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
  1840. [[package]]
  1841. name = "windows_x86_64_gnu"
  1842. version = "0.42.0"
  1843. source = "registry+https://github.com/rust-lang/crates.io-index"
  1844. checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
  1845. [[package]]
  1846. name = "windows_x86_64_gnullvm"
  1847. version = "0.42.0"
  1848. source = "registry+https://github.com/rust-lang/crates.io-index"
  1849. checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
  1850. [[package]]
  1851. name = "windows_x86_64_msvc"
  1852. version = "0.36.1"
  1853. source = "registry+https://github.com/rust-lang/crates.io-index"
  1854. checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
  1855. [[package]]
  1856. name = "windows_x86_64_msvc"
  1857. version = "0.42.0"
  1858. source = "registry+https://github.com/rust-lang/crates.io-index"
  1859. checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
  1860. [[package]]
  1861. name = "zerocopy"
  1862. version = "0.6.1"
  1863. source = "registry+https://github.com/rust-lang/crates.io-index"
  1864. checksum = "332f188cc1bcf1fe1064b8c58d150f497e697f49774aa846f2dc949d9a25f236"
  1865. dependencies = [
  1866. "byteorder",
  1867. "zerocopy-derive",
  1868. ]
  1869. [[package]]
  1870. name = "zerocopy-derive"
  1871. version = "0.3.2"
  1872. source = "registry+https://github.com/rust-lang/crates.io-index"
  1873. checksum = "6505e6815af7de1746a08f69c69606bb45695a17149517680f3b2149713b19a3"
  1874. dependencies = [
  1875. "proc-macro2",
  1876. "quote",
  1877. "syn",
  1878. ]
  1879. [[package]]
  1880. name = "zeroize"
  1881. version = "1.5.7"
  1882. source = "registry+https://github.com/rust-lang/crates.io-index"
  1883. checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
  1884. dependencies = [
  1885. "zeroize_derive",
  1886. ]
  1887. [[package]]
  1888. name = "zeroize_derive"
  1889. version = "1.3.2"
  1890. source = "registry+https://github.com/rust-lang/crates.io-index"
  1891. checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17"
  1892. dependencies = [
  1893. "proc-macro2",
  1894. "quote",
  1895. "syn",
  1896. "synstructure",
  1897. ]