Cargo.toml 528 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "oram"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. communicator = { path = "../communicator" }
  8. dpf = { path = "../dpf" }
  9. utils = { path = "../utils" }
  10. bitvec = "1.0.1"
  11. ff = "0.13.0"
  12. itertools = "0.10.5"
  13. num-bigint = "0.4.3"
  14. num-traits = "0.2.15"
  15. rand = "0.8.5"
  16. rand_chacha = "0.3.1"
  17. [dev-dependencies]
  18. criterion = "0.4.0"
  19. [[bench]]
  20. name = "doprf"
  21. harness = false
  22. [[bench]]
  23. name = "p_ot"
  24. harness = false