-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 702 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "keyword-pir-lwe"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitreader = "0.3.3"
hex-literal = "0.3.1"
libmath = "0.2.1"
poly1305 = "0.6.2"
rand = { version="0.8.3", features = ["small_rng"] }
rand_core = "0.6.3"
seahash = "4.1.0"
criterion = "0.3.1"
rayon = "1.5.0"
lazy_static = "1.4.0"
base64 = "0.13"
serde = {version="1.0", features=["derive"]}
serde_json = "1.0.59"
clap = "2.34.0"
bincode = "1.3.3"
xorf = {path = "bff-modp"}
sha2 = "0.10.6"
[dev-dependencies]
pi-rs-cli-utils = {path = "./pi-rs-cli-utils"}
[[bench]]
name = "bench"
harness = false
[lib]
bench = false