Cargo.toml 803 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. git-version = "0.3.5"
  15. itertools = "0.10.5"
  16. num-bigint = "0.4.3"
  17. num-traits = "0.2.15"
  18. rand = "0.8.5"
  19. rand_chacha = "0.3.1"
  20. rayon = "1.6.1"
  21. serde = { version = "1.0", features = ["derive"] }
  22. strum = { version = "0.24.1", features = ["derive"] }
  23. strum_macros = "0.24"
  24. [dev-dependencies]
  25. clap = { version = "4.1.4", features = ["derive"] }
  26. criterion = "0.4.0"
  27. serde_json = "1.0"
  28. [[bench]]
  29. name = "doprf"
  30. harness = false
  31. [[bench]]
  32. name = "p_ot"
  33. harness = false