-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 1.22 KB
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
[package]
description = "Implementation of a Oblivious Transfer extension protocols."
edition = "2024"
keywords = ["iknp", "kos", "oblivious-transfer", "silent-ot", "simplest-ot"]
license = "MIT"
name = "cryprot-ot"
version = "0.2.2"
authors.workspace = true
repository.workspace = true
[lints]
workspace = true
[lib]
# https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
bench = false
[dependencies]
bitvec = { workspace = true, features = ["serde"] }
bytemuck.workspace = true
cryprot-codes.workspace = true
cryprot-core = { workspace = true, features = ["tokio-rayon"] }
cryprot-net.workspace = true
cryprot-pprf.workspace = true
curve25519-dalek = { workspace = true, features = ["rand_core", "serde"] }
futures.workspace = true
rand.workspace = true
subtle.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["io-util"] }
tracing.workspace = true
[dev-dependencies]
anyhow.workspace = true
criterion.workspace = true
cryprot-core = { workspace = true, features = ["__testing"] }
cryprot-net = { workspace = true, features = ["__testing"] }
tokio = { workspace = true, features = ["full"] }
[[bench]]
harness = false
name = "bench"