Cargo.toml 543 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "pow"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [workspace]
  6. [dependencies]
  7. randomx = {git = "https://github.com/darkrenaissance/RandomX"}
  8. darkfi-serial = {path = "../../../src/serial"}
  9. darkfi-sdk = {path = "../../../src/sdk", features = ["async"]}
  10. darkfi = {path = "../../../", features = ["util", "async-serial"]}
  11. rand = "0.8.5"
  12. blake2b_simd = "1.0.2"
  13. num-bigint = "0.4.6"
  14. lazy_static = "1.5.0"
  15. [patch.crates-io]
  16. blake2b_simd = {git = "https://github.com/parazyd/blake2_simd", branch = "impl-common"}
  17. [lints]
  18. workspace = true