Cargo.toml 564 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dpf"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "single- and multi-point distributed point functions"
  6. authors.workspace = true
  7. license.workspace = true
  8. readme.workspace = true
  9. repository.workspace = true
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [dependencies]
  12. utils = { path = "../utils" }
  13. bincode = "2.0.0-rc.2"
  14. num = "0.4.0"
  15. rand = "0.8.5"
  16. rayon = "1.6.1"
  17. [dev-dependencies]
  18. criterion = "0.4.0"
  19. [[bench]]
  20. name = "spdpf"
  21. harness = false
  22. [[bench]]
  23. name = "mpdpf"
  24. harness = false