Cargo.lock 60 KB

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