| 12345678910111213141516171819202122232425262728293031323334 |
- [package]
- name = "randomx"
- version = "1.2.1"
- homepage = "https://github.com/tevador/RandomX/"
- authors = [
- "Dyne.org Foundation <foundation@dyne.org>",
- "tevador <tevador@gmail.com>",
- "The Monero Project",
- "The Tari Project",
- ]
- license = "BSD-3-Clause"
- edition = "2021"
- [lib]
- crate-type = ["cdylib", "lib"]
- [target.'cfg(not(target = "x86_64-unknown-linux-musl"))'.build-dependencies]
- bindgen = "0.72"
-
- [target.'cfg(target = "x86_64-unknown-linux-musl")'.build-dependencies]
- bindgen = {version = "0.72", default-features = false, features = ["static"]}
- [dependencies]
- bitflags = "2.10"
- libc = "0.2"
- [dev-dependencies]
- anyhow = "1.0"
- blake3 = {version = "1.8.2", features = ["rayon"]}
- hex = "0.4"
- num-bigint = "0.4.6"
- [profile.release]
- lto = false
|