Cargo.toml 420 B

1234567891011121314151617181920212223
  1. [workspace]
  2. members = [
  3. "communicator",
  4. "dpf",
  5. "oram",
  6. "utils",
  7. ]
  8. [workspace.package]
  9. version = "0.1.0"
  10. authors = ["Lennart Braun"]
  11. description = "Implementation of the Ramen three-party distributed oblivious RAM protocol"
  12. license = "MIT"
  13. readme = "README"
  14. repository = "https://github.com/AarhusCrypto/Ramen/"
  15. [profile.bench]
  16. debug = 2
  17. [profile.release]
  18. lto = "fat"
  19. codegen-units = 1
  20. panic = "abort"