-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (52 loc) · 1005 Bytes
/
Cargo.toml
File metadata and controls
69 lines (52 loc) · 1005 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[workspace]
members = [
".", "ole-pcg",
# "rb-okvs"
]
[workspace.dependencies]
aes = "0.8"
rand = "0.8.5"
aes-prng = "0.2"
dmpf = {path = "."}
ole-pcg = {path = "ole-pcg"}
rand_chacha = "0.3.1"
itertools = "0.13"
fpe = "0.6.1"
# rb-okvs = {path = "rb-okvs"}
[package]
name = "dmpf"
version = "0.1.0"
edition = "2021"
[lib]
bench = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
once_cell = "1"
aes = {workspace = true}
rand = {workspace = true}
aes-prng = {workspace = true}
rand_chacha = {workspace = true}
itertools = {workspace = true}
fpe = {workspace = true}
# rb-okvs = {workspace = true}
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "dpf"
harness = false
[[bench]]
name = "batch_code"
harness = false
[[bench]]
name = "prg"
harness = false
[[bench]]
name = "okvs"
harness = false
[[bench]]
name = "fpe"
harness = false
[[bin]]
name = "estimate_okvs"
[build]
rustflags = ["-C", "target-cpu=native"]