-
Notifications
You must be signed in to change notification settings - Fork 252
/
Copy pathCargo.toml
41 lines (35 loc) · 934 Bytes
/
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
[package]
name = "bn254_blackbox_solver"
description = "Solvers for black box functions which are specific for the bn254 curve"
# x-release-please-start-version
version = "1.0.0-beta.0"
# x-release-please-end
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
repository.workspace = true
[lints]
workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
acir.workspace = true
acvm_blackbox_solver.workspace = true
hex.workspace = true
lazy_static.workspace = true
ark-bn254.workspace = true
grumpkin.workspace = true
ark-ec.workspace = true
ark-ff.workspace = true
num-bigint.workspace = true
[dev-dependencies]
ark-std.workspace = true
criterion = "0.5.0"
pprof = { version = "0.12", features = [
"flamegraph",
"frame-pointer",
"criterion",
] }
[[bench]]
name = "criterion"
harness = false