Cargo.toml 600 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "randomx"
  3. version = "1.2.1"
  4. homepage = "https://github.com/tevador/RandomX/"
  5. authors = [
  6. "Dyne.org Foundation <foundation@dyne.org>",
  7. "tevador <tevador@gmail.com>",
  8. "The Monero Project",
  9. ]
  10. license = "BSD-3-Clause"
  11. edition = "2021"
  12. [target.'cfg(not(target = "x86_64-unknown-linux-musl"))'.build-dependencies]
  13. bindgen = "0.71"
  14. [target.'cfg(target = "x86_64-unknown-linux-musl")'.build-dependencies]
  15. bindgen = {version = "0.71", default-features = false, features = ["static"]}
  16. [dependencies]
  17. bitflags = "2.8"
  18. libc = "0.2"
  19. [dev-dependencies]
  20. anyhow = "1.0"
  21. hex = "0.4"