[package] name = "oram" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] communicator = { path = "../communicator" } dpf = { path = "../dpf" } utils = { path = "../utils" } bincode = "2.0.0-rc.2" bitvec = "1.0.1" ff = "0.13.0" funty = "2.0.0" itertools = "0.10.5" num-bigint = "0.4.3" num-traits = "0.2.15" rand = "0.8.5" rand_chacha = "0.3.1" rayon = "1.6.1" strum = { version = "0.24.1", features = ["derive"] } strum_macros = "0.24" [dev-dependencies] cuckoo = { path = "../cuckoo" } clap = { version = "4.1.4", features = ["derive"] } criterion = "0.4.0" [[bench]] name = "doprf" harness = false [[bench]] name = "p_ot" harness = false