Cargo.lock 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "anyhow"
  6. version = "1.0.69"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
  9. [[package]]
  10. name = "avm2_report"
  11. version = "0.1.0"
  12. dependencies = [
  13. "anyhow",
  14. "clap",
  15. "fnv",
  16. "serde",
  17. "serde_json",
  18. ]
  19. [[package]]
  20. name = "bitflags"
  21. version = "1.3.2"
  22. source = "registry+https://github.com/rust-lang/crates.io-index"
  23. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  24. [[package]]
  25. name = "cc"
  26. version = "1.0.79"
  27. source = "registry+https://github.com/rust-lang/crates.io-index"
  28. checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
  29. [[package]]
  30. name = "clap"
  31. version = "4.1.8"
  32. source = "registry+https://github.com/rust-lang/crates.io-index"
  33. checksum = "c3d7ae14b20b94cb02149ed21a86c423859cbe18dc7ed69845cace50e52b40a5"
  34. dependencies = [
  35. "bitflags",
  36. "clap_derive",
  37. "clap_lex",
  38. "is-terminal",
  39. "once_cell",
  40. "strsim",
  41. "termcolor",
  42. ]
  43. [[package]]
  44. name = "clap_derive"
  45. version = "4.1.8"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. checksum = "44bec8e5c9d09e439c4335b1af0abaab56dcf3b94999a936e1bb47b9134288f0"
  48. dependencies = [
  49. "heck",
  50. "proc-macro-error",
  51. "proc-macro2",
  52. "quote",
  53. "syn",
  54. ]
  55. [[package]]
  56. name = "clap_lex"
  57. version = "0.3.2"
  58. source = "registry+https://github.com/rust-lang/crates.io-index"
  59. checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09"
  60. dependencies = [
  61. "os_str_bytes",
  62. ]
  63. [[package]]
  64. name = "errno"
  65. version = "0.2.8"
  66. source = "registry+https://github.com/rust-lang/crates.io-index"
  67. checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
  68. dependencies = [
  69. "errno-dragonfly",
  70. "libc",
  71. "winapi",
  72. ]
  73. [[package]]
  74. name = "errno-dragonfly"
  75. version = "0.1.2"
  76. source = "registry+https://github.com/rust-lang/crates.io-index"
  77. checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
  78. dependencies = [
  79. "cc",
  80. "libc",
  81. ]
  82. [[package]]
  83. name = "fnv"
  84. version = "1.0.7"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
  87. [[package]]
  88. name = "heck"
  89. version = "0.4.1"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
  92. [[package]]
  93. name = "hermit-abi"
  94. version = "0.3.1"
  95. source = "registry+https://github.com/rust-lang/crates.io-index"
  96. checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
  97. [[package]]
  98. name = "io-lifetimes"
  99. version = "1.0.5"
  100. source = "registry+https://github.com/rust-lang/crates.io-index"
  101. checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
  102. dependencies = [
  103. "libc",
  104. "windows-sys",
  105. ]
  106. [[package]]
  107. name = "is-terminal"
  108. version = "0.4.4"
  109. source = "registry+https://github.com/rust-lang/crates.io-index"
  110. checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857"
  111. dependencies = [
  112. "hermit-abi",
  113. "io-lifetimes",
  114. "rustix",
  115. "windows-sys",
  116. ]
  117. [[package]]
  118. name = "itoa"
  119. version = "1.0.6"
  120. source = "registry+https://github.com/rust-lang/crates.io-index"
  121. checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
  122. [[package]]
  123. name = "libc"
  124. version = "0.2.139"
  125. source = "registry+https://github.com/rust-lang/crates.io-index"
  126. checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
  127. [[package]]
  128. name = "linux-raw-sys"
  129. version = "0.1.4"
  130. source = "registry+https://github.com/rust-lang/crates.io-index"
  131. checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
  132. [[package]]
  133. name = "once_cell"
  134. version = "1.17.1"
  135. source = "registry+https://github.com/rust-lang/crates.io-index"
  136. checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
  137. [[package]]
  138. name = "os_str_bytes"
  139. version = "6.4.1"
  140. source = "registry+https://github.com/rust-lang/crates.io-index"
  141. checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
  142. [[package]]
  143. name = "proc-macro-error"
  144. version = "1.0.4"
  145. source = "registry+https://github.com/rust-lang/crates.io-index"
  146. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  147. dependencies = [
  148. "proc-macro-error-attr",
  149. "proc-macro2",
  150. "quote",
  151. "syn",
  152. "version_check",
  153. ]
  154. [[package]]
  155. name = "proc-macro-error-attr"
  156. version = "1.0.4"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  159. dependencies = [
  160. "proc-macro2",
  161. "quote",
  162. "version_check",
  163. ]
  164. [[package]]
  165. name = "proc-macro2"
  166. version = "1.0.51"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
  169. dependencies = [
  170. "unicode-ident",
  171. ]
  172. [[package]]
  173. name = "quote"
  174. version = "1.0.23"
  175. source = "registry+https://github.com/rust-lang/crates.io-index"
  176. checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
  177. dependencies = [
  178. "proc-macro2",
  179. ]
  180. [[package]]
  181. name = "rustix"
  182. version = "0.36.9"
  183. source = "registry+https://github.com/rust-lang/crates.io-index"
  184. checksum = "fd5c6ff11fecd55b40746d1995a02f2eb375bf8c00d192d521ee09f42bef37bc"
  185. dependencies = [
  186. "bitflags",
  187. "errno",
  188. "io-lifetimes",
  189. "libc",
  190. "linux-raw-sys",
  191. "windows-sys",
  192. ]
  193. [[package]]
  194. name = "ryu"
  195. version = "1.0.13"
  196. source = "registry+https://github.com/rust-lang/crates.io-index"
  197. checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
  198. [[package]]
  199. name = "serde"
  200. version = "1.0.152"
  201. source = "registry+https://github.com/rust-lang/crates.io-index"
  202. checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
  203. dependencies = [
  204. "serde_derive",
  205. ]
  206. [[package]]
  207. name = "serde_derive"
  208. version = "1.0.152"
  209. source = "registry+https://github.com/rust-lang/crates.io-index"
  210. checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
  211. dependencies = [
  212. "proc-macro2",
  213. "quote",
  214. "syn",
  215. ]
  216. [[package]]
  217. name = "serde_json"
  218. version = "1.0.94"
  219. source = "registry+https://github.com/rust-lang/crates.io-index"
  220. checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea"
  221. dependencies = [
  222. "itoa",
  223. "ryu",
  224. "serde",
  225. ]
  226. [[package]]
  227. name = "strsim"
  228. version = "0.10.0"
  229. source = "registry+https://github.com/rust-lang/crates.io-index"
  230. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  231. [[package]]
  232. name = "syn"
  233. version = "1.0.109"
  234. source = "registry+https://github.com/rust-lang/crates.io-index"
  235. checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
  236. dependencies = [
  237. "proc-macro2",
  238. "quote",
  239. "unicode-ident",
  240. ]
  241. [[package]]
  242. name = "termcolor"
  243. version = "1.2.0"
  244. source = "registry+https://github.com/rust-lang/crates.io-index"
  245. checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
  246. dependencies = [
  247. "winapi-util",
  248. ]
  249. [[package]]
  250. name = "unicode-ident"
  251. version = "1.0.8"
  252. source = "registry+https://github.com/rust-lang/crates.io-index"
  253. checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
  254. [[package]]
  255. name = "version_check"
  256. version = "0.9.4"
  257. source = "registry+https://github.com/rust-lang/crates.io-index"
  258. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  259. [[package]]
  260. name = "winapi"
  261. version = "0.3.9"
  262. source = "registry+https://github.com/rust-lang/crates.io-index"
  263. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  264. dependencies = [
  265. "winapi-i686-pc-windows-gnu",
  266. "winapi-x86_64-pc-windows-gnu",
  267. ]
  268. [[package]]
  269. name = "winapi-i686-pc-windows-gnu"
  270. version = "0.4.0"
  271. source = "registry+https://github.com/rust-lang/crates.io-index"
  272. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  273. [[package]]
  274. name = "winapi-util"
  275. version = "0.1.5"
  276. source = "registry+https://github.com/rust-lang/crates.io-index"
  277. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  278. dependencies = [
  279. "winapi",
  280. ]
  281. [[package]]
  282. name = "winapi-x86_64-pc-windows-gnu"
  283. version = "0.4.0"
  284. source = "registry+https://github.com/rust-lang/crates.io-index"
  285. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  286. [[package]]
  287. name = "windows-sys"
  288. version = "0.45.0"
  289. source = "registry+https://github.com/rust-lang/crates.io-index"
  290. checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
  291. dependencies = [
  292. "windows-targets",
  293. ]
  294. [[package]]
  295. name = "windows-targets"
  296. version = "0.42.1"
  297. source = "registry+https://github.com/rust-lang/crates.io-index"
  298. checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
  299. dependencies = [
  300. "windows_aarch64_gnullvm",
  301. "windows_aarch64_msvc",
  302. "windows_i686_gnu",
  303. "windows_i686_msvc",
  304. "windows_x86_64_gnu",
  305. "windows_x86_64_gnullvm",
  306. "windows_x86_64_msvc",
  307. ]
  308. [[package]]
  309. name = "windows_aarch64_gnullvm"
  310. version = "0.42.1"
  311. source = "registry+https://github.com/rust-lang/crates.io-index"
  312. checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
  313. [[package]]
  314. name = "windows_aarch64_msvc"
  315. version = "0.42.1"
  316. source = "registry+https://github.com/rust-lang/crates.io-index"
  317. checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
  318. [[package]]
  319. name = "windows_i686_gnu"
  320. version = "0.42.1"
  321. source = "registry+https://github.com/rust-lang/crates.io-index"
  322. checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
  323. [[package]]
  324. name = "windows_i686_msvc"
  325. version = "0.42.1"
  326. source = "registry+https://github.com/rust-lang/crates.io-index"
  327. checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
  328. [[package]]
  329. name = "windows_x86_64_gnu"
  330. version = "0.42.1"
  331. source = "registry+https://github.com/rust-lang/crates.io-index"
  332. checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
  333. [[package]]
  334. name = "windows_x86_64_gnullvm"
  335. version = "0.42.1"
  336. source = "registry+https://github.com/rust-lang/crates.io-index"
  337. checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
  338. [[package]]
  339. name = "windows_x86_64_msvc"
  340. version = "0.42.1"
  341. source = "registry+https://github.com/rust-lang/crates.io-index"
  342. checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"