Cargo.lock 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "argparse"
  5. version = "0.2.2"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. [[package]]
  8. name = "cc"
  9. version = "1.0.45"
  10. source = "registry+https://github.com/rust-lang/crates.io-index"
  11. [[package]]
  12. name = "cfg-if"
  13. version = "0.1.10"
  14. source = "registry+https://github.com/rust-lang/crates.io-index"
  15. [[package]]
  16. name = "dtoa"
  17. version = "0.4.4"
  18. source = "registry+https://github.com/rust-lang/crates.io-index"
  19. [[package]]
  20. name = "fallout-terminal"
  21. version = "0.1.0"
  22. dependencies = [
  23. "argparse 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
  24. "pancurses 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)",
  25. "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)",
  26. "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)",
  27. ]
  28. [[package]]
  29. name = "libc"
  30. version = "0.2.62"
  31. source = "registry+https://github.com/rust-lang/crates.io-index"
  32. [[package]]
  33. name = "linked-hash-map"
  34. version = "0.5.2"
  35. source = "registry+https://github.com/rust-lang/crates.io-index"
  36. [[package]]
  37. name = "log"
  38. version = "0.4.8"
  39. source = "registry+https://github.com/rust-lang/crates.io-index"
  40. dependencies = [
  41. "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
  42. ]
  43. [[package]]
  44. name = "ncurses"
  45. version = "5.99.0"
  46. source = "registry+https://github.com/rust-lang/crates.io-index"
  47. dependencies = [
  48. "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)",
  49. "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
  50. "pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
  51. ]
  52. [[package]]
  53. name = "pancurses"
  54. version = "0.16.1"
  55. source = "registry+https://github.com/rust-lang/crates.io-index"
  56. dependencies = [
  57. "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
  58. "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
  59. "ncurses 5.99.0 (registry+https://github.com/rust-lang/crates.io-index)",
  60. "pdcurses-sys 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
  61. "winreg 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
  62. ]
  63. [[package]]
  64. name = "pdcurses-sys"
  65. version = "0.7.1"
  66. source = "registry+https://github.com/rust-lang/crates.io-index"
  67. dependencies = [
  68. "cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)",
  69. "libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)",
  70. ]
  71. [[package]]
  72. name = "pkg-config"
  73. version = "0.3.16"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. [[package]]
  76. name = "proc-macro2"
  77. version = "1.0.5"
  78. source = "registry+https://github.com/rust-lang/crates.io-index"
  79. dependencies = [
  80. "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  81. ]
  82. [[package]]
  83. name = "quote"
  84. version = "1.0.2"
  85. source = "registry+https://github.com/rust-lang/crates.io-index"
  86. dependencies = [
  87. "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  88. ]
  89. [[package]]
  90. name = "serde"
  91. version = "1.0.101"
  92. source = "registry+https://github.com/rust-lang/crates.io-index"
  93. dependencies = [
  94. "serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)",
  95. ]
  96. [[package]]
  97. name = "serde_derive"
  98. version = "1.0.101"
  99. source = "registry+https://github.com/rust-lang/crates.io-index"
  100. dependencies = [
  101. "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  102. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  103. "syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  104. ]
  105. [[package]]
  106. name = "serde_yaml"
  107. version = "0.8.11"
  108. source = "registry+https://github.com/rust-lang/crates.io-index"
  109. dependencies = [
  110. "dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
  111. "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  112. "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)",
  113. "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
  114. ]
  115. [[package]]
  116. name = "syn"
  117. version = "1.0.5"
  118. source = "registry+https://github.com/rust-lang/crates.io-index"
  119. dependencies = [
  120. "proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
  121. "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
  122. "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
  123. ]
  124. [[package]]
  125. name = "unicode-xid"
  126. version = "0.2.0"
  127. source = "registry+https://github.com/rust-lang/crates.io-index"
  128. [[package]]
  129. name = "winapi"
  130. version = "0.3.8"
  131. source = "registry+https://github.com/rust-lang/crates.io-index"
  132. dependencies = [
  133. "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  134. "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  135. ]
  136. [[package]]
  137. name = "winapi-i686-pc-windows-gnu"
  138. version = "0.4.0"
  139. source = "registry+https://github.com/rust-lang/crates.io-index"
  140. [[package]]
  141. name = "winapi-x86_64-pc-windows-gnu"
  142. version = "0.4.0"
  143. source = "registry+https://github.com/rust-lang/crates.io-index"
  144. [[package]]
  145. name = "winreg"
  146. version = "0.5.1"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. dependencies = [
  149. "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
  150. ]
  151. [[package]]
  152. name = "yaml-rust"
  153. version = "0.4.3"
  154. source = "registry+https://github.com/rust-lang/crates.io-index"
  155. dependencies = [
  156. "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
  157. ]
  158. [metadata]
  159. "checksum argparse 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3f8ebf5827e4ac4fd5946560e6a99776ea73b596d80898f357007317a7141e47"
  160. "checksum cc 1.0.45 (registry+https://github.com/rust-lang/crates.io-index)" = "4fc9a35e1f4290eb9e5fc54ba6cf40671ed2a2514c3eeb2b2a908dda2ea5a1be"
  161. "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
  162. "checksum dtoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e"
  163. "checksum libc 0.2.62 (registry+https://github.com/rust-lang/crates.io-index)" = "34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba"
  164. "checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83"
  165. "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
  166. "checksum ncurses 5.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "15699bee2f37e9f8828c7b35b2bc70d13846db453f2d507713b758fabe536b82"
  167. "checksum pancurses 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d3058bc37c433096b2ac7afef1c5cdfae49ede0a4ffec3dfc1df1df0959d0ff0"
  168. "checksum pdcurses-sys 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "084dd22796ff60f1225d4eb6329f33afaf4c85419d51d440ab6b8c6f4529166b"
  169. "checksum pkg-config 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = "72d5370d90f49f70bd033c3d75e87fc529fbfff9d6f7cccef07d6170079d91ea"
  170. "checksum proc-macro2 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "90cf5f418035b98e655e9cdb225047638296b862b42411c4e45bb88d700f7fc0"
  171. "checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
  172. "checksum serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "9796c9b7ba2ffe7a9ce53c2287dfc48080f4b2b362fcc245a259b3a7201119dd"
  173. "checksum serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "4b133a43a1ecd55d4086bd5b4dc6c1751c68b1bfbeba7a5040442022c7e7c02e"
  174. "checksum serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" = "691b17f19fc1ec9d94ec0b5864859290dff279dbd7b03f017afda54eb36c3c35"
  175. "checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf"
  176. "checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
  177. "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
  178. "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  179. "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
  180. "checksum winreg 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a"
  181. "checksum yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d"