Compare distribution of three random integer algorithm.
sadrand
rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.lock 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 = "getrandom"
  10. version = "0.2.5"
  11. source = "registry+https://github.com/rust-lang/crates.io-index"
  12. checksum = "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77"
  13. dependencies = [
  14. "cfg-if",
  15. "libc",
  16. "wasi",
  17. ]
  18. [[package]]
  19. name = "libc"
  20. version = "0.2.119"
  21. source = "registry+https://github.com/rust-lang/crates.io-index"
  22. checksum = "1bf2e165bb3457c8e098ea76f3e3bc9db55f87aa90d52d0e6be741470916aaa4"
  23. [[package]]
  24. name = "ppv-lite86"
  25. version = "0.2.16"
  26. source = "registry+https://github.com/rust-lang/crates.io-index"
  27. checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
  28. [[package]]
  29. name = "rand"
  30. version = "0.8.5"
  31. source = "registry+https://github.com/rust-lang/crates.io-index"
  32. checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
  33. dependencies = [
  34. "libc",
  35. "rand_chacha",
  36. "rand_core",
  37. ]
  38. [[package]]
  39. name = "rand_chacha"
  40. version = "0.3.1"
  41. source = "registry+https://github.com/rust-lang/crates.io-index"
  42. checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
  43. dependencies = [
  44. "ppv-lite86",
  45. "rand_core",
  46. ]
  47. [[package]]
  48. name = "rand_core"
  49. version = "0.6.3"
  50. source = "registry+https://github.com/rust-lang/crates.io-index"
  51. checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
  52. dependencies = [
  53. "getrandom",
  54. ]
  55. [[package]]
  56. name = "sadrand"
  57. version = "0.1.0"
  58. dependencies = [
  59. "rand",
  60. ]
  61. [[package]]
  62. name = "wasi"
  63. version = "0.10.2+wasi-snapshot-preview1"
  64. source = "registry+https://github.com/rust-lang/crates.io-index"
  65. checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"