forked from matter-labs/era-boojum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (49 loc) · 1.12 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
[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 = "*"
ethereum-types = "=0.14.1"
cs_derive = { path = "./cs_derive" }
itertools = "0.10"
blake2 = "0.10"
sha2 = "0.10"
num-modular = "0.5.1"
packed_simd = { version = "0.3.9" }
pairing = { package = "pairing_ce", git = "https://github.com/matter-labs/pairing.git" }
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]
log_tracing = ["tracing"]