Cargo.lock 59 KB

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