-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 892 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
[package]
name = "plonky"
version = "0.1.0"
authors = ["zTgx <747674262@qq.com>"]
edition = "2018"
[lib]
name = "plonky"
path = "plonky/lib.rs"
crate-type = ["staticlib"]
[dependencies]
dusk-plonk = "0.11.0"
dusk-bls12_381 = {version = "0.9", default-features = false, features = ["groups", "pairings", "endo"]}
dusk-jubjub = {version = "0.11", default-features = false}
# https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html
# Dev-dependencies are not used when compiling a package for building, but are used for compiling tests, examples, and benchmarks.
[dev-dependencies]
ff = "0.10"
sha2 = "0.9.5"
rand = "0.8.4"
criterion = "0.3"
tempdir = "0.3"
[profile.release]
panic = "abort"
codegen-units = 1
overflow-checks = false
[profile.bench]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = true
incremental = false
codegen-units = 1