-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
55 lines (46 loc) · 1.07 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
51
52
53
54
55
[workspace]
members = [".", "ffi", "scrypt-ocl", "initializer", "profiler"]
[package]
name = "post-rs"
version = "0.1.13"
edition = "2021"
[lib]
name = "post"
[dependencies]
aes = "0.8.2"
# Take a dependency on cipher to enable block-padding feature
# as `aes` doesn't expose it.
cipher = { version = "*", features = ["block-padding"] }
eyre = "0.6.8"
regex = "1.7.1"
itertools = "0.10.5"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
bytemuck = "1.13.0"
serde_with = { version = "2.2.0", features = ["base64"] }
scrypt-jane = { git = "https://github.com/spacemeshos/scrypt-jane-rs", branch = "main" }
blake3 = "1.3.3"
bitvec = "1.0.1"
rayon = "1.6.1"
rand = "0.8.5"
log = "0.4.17"
[dev-dependencies]
criterion = "0.4"
pprof = { version = "0.11.1", features = ["flamegraph", "criterion"] }
tempfile = "3.3.0"
rand = "0.8.5"
proptest = "1.1.0"
[[bench]]
name = "proving"
harness = false
[[bench]]
name = "pow"
harness = false
[[bench]]
name = "verifying"
harness = false
[profile.release-clib]
inherits = "release"
strip = true
lto = true
rpath = true