forked from vivijj/boojum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (55 loc) · 1.22 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
56
57
58
59
60
61
[package]
name = "boojum"
version = "0.2.0"
edition = "2021"
[dependencies]
derivative = "2"
serde = { version = "1", features = ["derive"] }
rand = "0.8"
unroll = "0.1"
num_cpus = "1"
rayon = "1"
smallvec = { version = "*", features = [
"const_generics",
"const_new",
"serde",
] }
crossbeam = "*"
sha3 = { git = "https://github.com/RustCrypto/hashes.git", rev = "7a187e934c1f6c68e4b4e5cf37541b7a0d64d303" }
lazy_static = "*"
arrayvec = "0.7"
const_format = "0.2"
bincode = "*"
alloy-primitives = { version = "0.7.6", features = ["serde"] }
cs_derive = { path = "./cs_derive" }
itertools = "0.10"
blake2 = "0.10"
sha2 = "0.10"
num-modular = "0.5.1"
pairing = { package = "pairing_ce", version = "=0.28.6" }
crypto-bigint = "0.5"
convert_case = "*"
firestorm = "*"
tracing = { version = "0.1.37", optional = true }
[dev-dependencies]
criterion = "0.4"
serde_json = "*"
hex = "*"
[[bench]]
name = "benchmarks"
harness = false
[profile.release]
debug = true
codegen-units = 1
lto = "fat"
opt-level = 3
[profile.bench]
debug = false
codegen-units = 1
lto = "fat"
opt-level = 3
[features]
# If enabled, logs will be using trace, if disabled, they will be printed to stdout.
log_tracing = ["tracing"]
cr_paranoia_mode = []
debug_track = []