Cargo.lock 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "atty"
  6. version = "0.2.14"
  7. source = "registry+https://github.com/rust-lang/crates.io-index"
  8. checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
  9. dependencies = [
  10. "hermit-abi",
  11. "libc",
  12. "winapi",
  13. ]
  14. [[package]]
  15. name = "bitflags"
  16. version = "1.3.2"
  17. source = "registry+https://github.com/rust-lang/crates.io-index"
  18. checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
  19. [[package]]
  20. name = "clap"
  21. version = "4.0.18"
  22. source = "registry+https://github.com/rust-lang/crates.io-index"
  23. checksum = "335867764ed2de42325fafe6d18b8af74ba97ee0c590fa016f157535b42ab04b"
  24. dependencies = [
  25. "atty",
  26. "bitflags",
  27. "clap_derive",
  28. "clap_lex",
  29. "once_cell",
  30. "strsim",
  31. "termcolor",
  32. ]
  33. [[package]]
  34. name = "clap_derive"
  35. version = "4.0.18"
  36. source = "registry+https://github.com/rust-lang/crates.io-index"
  37. checksum = "16a1b0f6422af32d5da0c58e2703320f379216ee70198241c84173a8c5ac28f3"
  38. dependencies = [
  39. "heck",
  40. "proc-macro-error",
  41. "proc-macro2",
  42. "quote",
  43. "syn",
  44. ]
  45. [[package]]
  46. name = "clap_lex"
  47. version = "0.3.0"
  48. source = "registry+https://github.com/rust-lang/crates.io-index"
  49. checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
  50. dependencies = [
  51. "os_str_bytes",
  52. ]
  53. [[package]]
  54. name = "heck"
  55. version = "0.4.0"
  56. source = "registry+https://github.com/rust-lang/crates.io-index"
  57. checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
  58. [[package]]
  59. name = "hermit-abi"
  60. version = "0.1.19"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
  63. dependencies = [
  64. "libc",
  65. ]
  66. [[package]]
  67. name = "libc"
  68. version = "0.2.137"
  69. source = "registry+https://github.com/rust-lang/crates.io-index"
  70. checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
  71. [[package]]
  72. name = "once_cell"
  73. version = "1.15.0"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
  76. [[package]]
  77. name = "os_str_bytes"
  78. version = "6.3.1"
  79. source = "registry+https://github.com/rust-lang/crates.io-index"
  80. checksum = "3baf96e39c5359d2eb0dd6ccb42c62b91d9678aa68160d261b9e0ccbf9e9dea9"
  81. [[package]]
  82. name = "proc-macro-error"
  83. version = "1.0.4"
  84. source = "registry+https://github.com/rust-lang/crates.io-index"
  85. checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
  86. dependencies = [
  87. "proc-macro-error-attr",
  88. "proc-macro2",
  89. "quote",
  90. "syn",
  91. "version_check",
  92. ]
  93. [[package]]
  94. name = "proc-macro-error-attr"
  95. version = "1.0.4"
  96. source = "registry+https://github.com/rust-lang/crates.io-index"
  97. checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
  98. dependencies = [
  99. "proc-macro2",
  100. "quote",
  101. "version_check",
  102. ]
  103. [[package]]
  104. name = "proc-macro2"
  105. version = "1.0.47"
  106. source = "registry+https://github.com/rust-lang/crates.io-index"
  107. checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
  108. dependencies = [
  109. "unicode-ident",
  110. ]
  111. [[package]]
  112. name = "pyth-xc-tool"
  113. version = "0.1.0"
  114. dependencies = [
  115. "clap",
  116. "shell-words",
  117. ]
  118. [[package]]
  119. name = "quote"
  120. version = "1.0.21"
  121. source = "registry+https://github.com/rust-lang/crates.io-index"
  122. checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
  123. dependencies = [
  124. "proc-macro2",
  125. ]
  126. [[package]]
  127. name = "shell-words"
  128. version = "1.1.0"
  129. source = "registry+https://github.com/rust-lang/crates.io-index"
  130. checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
  131. [[package]]
  132. name = "strsim"
  133. version = "0.10.0"
  134. source = "registry+https://github.com/rust-lang/crates.io-index"
  135. checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
  136. [[package]]
  137. name = "syn"
  138. version = "1.0.103"
  139. source = "registry+https://github.com/rust-lang/crates.io-index"
  140. checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
  141. dependencies = [
  142. "proc-macro2",
  143. "quote",
  144. "unicode-ident",
  145. ]
  146. [[package]]
  147. name = "termcolor"
  148. version = "1.1.3"
  149. source = "registry+https://github.com/rust-lang/crates.io-index"
  150. checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
  151. dependencies = [
  152. "winapi-util",
  153. ]
  154. [[package]]
  155. name = "unicode-ident"
  156. version = "1.0.5"
  157. source = "registry+https://github.com/rust-lang/crates.io-index"
  158. checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
  159. [[package]]
  160. name = "version_check"
  161. version = "0.9.4"
  162. source = "registry+https://github.com/rust-lang/crates.io-index"
  163. checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
  164. [[package]]
  165. name = "winapi"
  166. version = "0.3.9"
  167. source = "registry+https://github.com/rust-lang/crates.io-index"
  168. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  169. dependencies = [
  170. "winapi-i686-pc-windows-gnu",
  171. "winapi-x86_64-pc-windows-gnu",
  172. ]
  173. [[package]]
  174. name = "winapi-i686-pc-windows-gnu"
  175. version = "0.4.0"
  176. source = "registry+https://github.com/rust-lang/crates.io-index"
  177. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  178. [[package]]
  179. name = "winapi-util"
  180. version = "0.1.5"
  181. source = "registry+https://github.com/rust-lang/crates.io-index"
  182. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  183. dependencies = [
  184. "winapi",
  185. ]
  186. [[package]]
  187. name = "winapi-x86_64-pc-windows-gnu"
  188. version = "0.4.0"
  189. source = "registry+https://github.com/rust-lang/crates.io-index"
  190. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"