-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 1.1 KB
/
Cargo.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "chalamet_pir"
version = "0.3.0"
edition = "2024"
resolver = "2"
rust-version = "1.85.0"
authors = ["Anjan Roy <[email protected]>"]
description = "Simple, Stateful, Single-Server Private Information Retrieval for Key-Value Databases"
readme = "README.md"
repository = "https://github.com/itzmeanjan/ChalametPIR.git"
license = "MPL-2.0"
keywords = ["priv-info-retrieval", "lwe-pir", "frodo-pir", "chalamet-pir"]
categories = ["cryptography", "data-structures"]
[dependencies]
turboshake = "=0.4.1"
rand = "=0.9.0"
rand_chacha = "=0.9.0"
serde = { version = "=1.0.218", features = ["derive"] }
bincode = "=1.3.3"
rayon = "=1.10.0"
[dev-dependencies]
divan = "=0.1.17"
unicode-xid = "=0.2.6"
test-case = "=3.3.1"
[[bench]]
name = "offline_phase"
harness = false
[[bench]]
name = "online_phase"
harness = false
required-features = ["mutate_internal_client_state"]
[features]
mutate_internal_client_state = []
[profile.optimized]
inherits = "release"
codegen-units = 1
lto = "thin"
panic = "abort"
[profile.test-release]
inherits = "release"
debug = true
debug-assertions = true
overflow-checks = true