Cargo.toml 664 B

1234567891011121314151617181920212223242526
  1. # -*- coding: utf-8 -*-
  2. [package]
  3. name = "shr3"
  4. version = "1.0.0"
  5. edition = "2021"
  6. description = "SHR3 - 3-shift register random number generator"
  7. authors = ["Michael Buesch <m@bues.ch>"]
  8. license = "MIT OR Apache-2.0"
  9. readme = "README.md"
  10. repository = "https://bues.ch/cgit/shr3rs.git"
  11. categories = ["algorithms", "no-std"]
  12. keywords = ["shr3", "random", "prng"]
  13. [features]
  14. default = []
  15. __devmode__ = [] # Developer mode. Do not use.
  16. [dependencies]
  17. [build-dependencies]
  18. autocfg = "1"
  19. # vim: ts=4 sw=4 expandtab