Cargo.toml 743 B

123456789101112131415161718192021222324252627282930313233343536
  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. bincode = "2.0.0-rc.2"
  11. bitvec = "1.0.1"
  12. ff = "0.13.0"
  13. funty = "2.0.0"
  14. itertools = "0.10.5"
  15. num-bigint = "0.4.3"
  16. num-traits = "0.2.15"
  17. rand = "0.8.5"
  18. rand_chacha = "0.3.1"
  19. rayon = "1.6.1"
  20. strum = { version = "0.24.1", features = ["derive"] }
  21. strum_macros = "0.24"
  22. [dev-dependencies]
  23. cuckoo = { path = "../cuckoo" }
  24. clap = { version = "4.1.4", features = ["derive"] }
  25. criterion = "0.4.0"
  26. [[bench]]
  27. name = "doprf"
  28. harness = false
  29. [[bench]]
  30. name = "p_ot"
  31. harness = false