Cargo.lock 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. # This file is automatically @generated by Cargo.
  2. # It is not intended for manual editing.
  3. [[package]]
  4. name = "cfg-if"
  5. version = "1.0.0"
  6. source = "registry+https://github.com/rust-lang/crates.io-index"
  7. checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
  8. [[package]]
  9. name = "cuckoo_simulation"
  10. version = "0.1.0"
  11. dependencies = [
  12. "rand",
  13. "rand_core 0.5.1",
  14. "rand_pcg",
  15. "rand_xoshiro",
  16. "reservoir-sampling",
  17. ]
  18. [[package]]
  19. name = "getrandom"
  20. version = "0.2.2"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
  23. dependencies = [
  24. "cfg-if",
  25. "libc",
  26. "wasi",
  27. ]
  28. [[package]]
  29. name = "libc"
  30. version = "0.2.83"
  31. source = "registry+https://github.com/rust-lang/crates.io-index"
  32. checksum = "7eb0c4e9c72ee9d69b767adebc5f4788462a3b45624acd919475c92597bcaf4f"
  33. [[package]]
  34. name = "ppv-lite86"
  35. version = "0.2.10"
  36. source = "registry+https://github.com/rust-lang/crates.io-index"
  37. checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
  38. [[package]]
  39. name = "rand"
  40. version = "0.8.3"
  41. source = "registry+https://github.com/rust-lang/crates.io-index"
  42. checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
  43. dependencies = [
  44. "libc",
  45. "rand_chacha",
  46. "rand_core 0.6.1",
  47. "rand_hc",
  48. ]
  49. [[package]]
  50. name = "rand_chacha"
  51. version = "0.3.0"
  52. source = "registry+https://github.com/rust-lang/crates.io-index"
  53. checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
  54. dependencies = [
  55. "ppv-lite86",
  56. "rand_core 0.6.1",
  57. ]
  58. [[package]]
  59. name = "rand_core"
  60. version = "0.5.1"
  61. source = "registry+https://github.com/rust-lang/crates.io-index"
  62. checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
  63. [[package]]
  64. name = "rand_core"
  65. version = "0.6.1"
  66. source = "registry+https://github.com/rust-lang/crates.io-index"
  67. checksum = "c026d7df8b298d90ccbbc5190bd04d85e159eaf5576caeacf8741da93ccbd2e5"
  68. dependencies = [
  69. "getrandom",
  70. ]
  71. [[package]]
  72. name = "rand_hc"
  73. version = "0.3.0"
  74. source = "registry+https://github.com/rust-lang/crates.io-index"
  75. checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
  76. dependencies = [
  77. "rand_core 0.6.1",
  78. ]
  79. [[package]]
  80. name = "rand_pcg"
  81. version = "0.3.0"
  82. source = "registry+https://github.com/rust-lang/crates.io-index"
  83. checksum = "7de198537002b913568a3847e53535ace266f93526caf5c360ec41d72c5787f0"
  84. dependencies = [
  85. "rand_core 0.6.1",
  86. ]
  87. [[package]]
  88. name = "rand_xoshiro"
  89. version = "0.4.0"
  90. source = "registry+https://github.com/rust-lang/crates.io-index"
  91. checksum = "a9fcdd2e881d02f1d9390ae47ad8e5696a9e4be7b547a1da2afbc61973217004"
  92. dependencies = [
  93. "rand_core 0.5.1",
  94. ]
  95. [[package]]
  96. name = "reservoir-sampling"
  97. version = "0.3.1"
  98. source = "registry+https://github.com/rust-lang/crates.io-index"
  99. checksum = "09ae97164005cd70c087378a9c47a47449e3bb68b8098aefd1c8e9801e608df7"
  100. dependencies = [
  101. "rand",
  102. ]
  103. [[package]]
  104. name = "wasi"
  105. version = "0.10.2+wasi-snapshot-preview1"
  106. source = "registry+https://github.com/rust-lang/crates.io-index"
  107. checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"