Cargo.lock 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. version = 3
  4. [[package]]
  5. name = "bishop"
  6. version = "0.1.0"
  7. dependencies = [
  8. "log",
  9. "rand",
  10. "simplelog",
  11. "static_assertions",
  12. ]
  13. [[package]]
  14. name = "cfg-if"
  15. version = "1.0.0"
  16. source = "registry+https://github.com/rust-lang/crates.io-index"
  17. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  18. [[package]]
  19. name = "getrandom"
  20. version = "0.2.7"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
  23. dependencies = [
  24. "cfg-if",
  25. "libc",
  26. "wasi",
  27. ]
  28. [[package]]
  29. name = "itoa"
  30. version = "1.0.4"
  31. source = "registry+https://github.com/rust-lang/crates.io-index"
  32. checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
  33. [[package]]
  34. name = "libc"
  35. version = "0.2.135"
  36. source = "registry+https://github.com/rust-lang/crates.io-index"
  37. checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c"
  38. [[package]]
  39. name = "log"
  40. version = "0.4.17"
  41. source = "registry+https://github.com/rust-lang/crates.io-index"
  42. checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
  43. dependencies = [
  44. "cfg-if",
  45. ]
  46. [[package]]
  47. name = "num_threads"
  48. version = "0.1.6"
  49. source = "registry+https://github.com/rust-lang/crates.io-index"
  50. checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
  51. dependencies = [
  52. "libc",
  53. ]
  54. [[package]]
  55. name = "ppv-lite86"
  56. version = "0.2.16"
  57. source = "registry+https://github.com/rust-lang/crates.io-index"
  58. checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
  59. [[package]]
  60. name = "rand"
  61. version = "0.8.5"
  62. source = "registry+https://github.com/rust-lang/crates.io-index"
  63. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  64. dependencies = [
  65. "libc",
  66. "rand_chacha",
  67. "rand_core",
  68. ]
  69. [[package]]
  70. name = "rand_chacha"
  71. version = "0.3.1"
  72. source = "registry+https://github.com/rust-lang/crates.io-index"
  73. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  74. dependencies = [
  75. "ppv-lite86",
  76. "rand_core",
  77. ]
  78. [[package]]
  79. name = "rand_core"
  80. version = "0.6.4"
  81. source = "registry+https://github.com/rust-lang/crates.io-index"
  82. checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
  83. dependencies = [
  84. "getrandom",
  85. ]
  86. [[package]]
  87. name = "simplelog"
  88. version = "0.12.0"
  89. source = "registry+https://github.com/rust-lang/crates.io-index"
  90. checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786"
  91. dependencies = [
  92. "log",
  93. "termcolor",
  94. "time",
  95. ]
  96. [[package]]
  97. name = "static_assertions"
  98. version = "1.1.0"
  99. source = "registry+https://github.com/rust-lang/crates.io-index"
  100. checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
  101. [[package]]
  102. name = "termcolor"
  103. version = "1.1.3"
  104. source = "registry+https://github.com/rust-lang/crates.io-index"
  105. checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
  106. dependencies = [
  107. "winapi-util",
  108. ]
  109. [[package]]
  110. name = "time"
  111. version = "0.3.15"
  112. source = "registry+https://github.com/rust-lang/crates.io-index"
  113. checksum = "d634a985c4d4238ec39cacaed2e7ae552fbd3c476b552c1deac3021b7d7eaf0c"
  114. dependencies = [
  115. "itoa",
  116. "libc",
  117. "num_threads",
  118. "time-macros",
  119. ]
  120. [[package]]
  121. name = "time-macros"
  122. version = "0.2.4"
  123. source = "registry+https://github.com/rust-lang/crates.io-index"
  124. checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
  125. [[package]]
  126. name = "wasi"
  127. version = "0.11.0+wasi-snapshot-preview1"
  128. source = "registry+https://github.com/rust-lang/crates.io-index"
  129. checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
  130. [[package]]
  131. name = "winapi"
  132. version = "0.3.9"
  133. source = "registry+https://github.com/rust-lang/crates.io-index"
  134. checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
  135. dependencies = [
  136. "winapi-i686-pc-windows-gnu",
  137. "winapi-x86_64-pc-windows-gnu",
  138. ]
  139. [[package]]
  140. name = "winapi-i686-pc-windows-gnu"
  141. version = "0.4.0"
  142. source = "registry+https://github.com/rust-lang/crates.io-index"
  143. checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
  144. [[package]]
  145. name = "winapi-util"
  146. version = "0.1.5"
  147. source = "registry+https://github.com/rust-lang/crates.io-index"
  148. checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
  149. dependencies = [
  150. "winapi",
  151. ]
  152. [[package]]
  153. name = "winapi-x86_64-pc-windows-gnu"
  154. version = "0.4.0"
  155. source = "registry+https://github.com/rust-lang/crates.io-index"
  156. checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"