-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkzg.toml
52 lines (43 loc) · 1.35 KB
/
kzg.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
[package]
name = "battlezips_halo2"
version = "0.2.0"
edition = "2021"
[lib]
name = "battlezips_halo2"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[dependencies]
halo2_proofs = { version = "0.2.0", git = "https://github.com/privacy-scaling-explorations/halo2" }
plotters = { version = "0.3.4", optional = true }
rand_core = { version = "0.6.3", features = ["getrandom"] }
bitvec = "1.0.0"
hex = "0.4.3"
criterion = { version = "0.4.0", default-features = false }
rand = "0.8.5"
serde = { version = "1.0.152", features = ["derive"] }
[target.'cfg(target_family = "wasm")'.dependencies]
halo2_gadgets = { version = "0.2.0", git = "https://github.com/privacy-scaling-explorations/halo2", features = [
"test-dependencies",
] }
js-sys = "0.3.61"
getrandom = { version = "0.2.8", features = ["js"] }
rayon = "1.5"
serde-wasm-bindgen = "0.5.0"
wasm-bindgen = "0.2.84"
wasm-bindgen-rayon = "1.0"
[else]
halo2_gadgets = { version = "0.2.0", git = "https://github.com/privacy-scaling-explorations/halo2" }
# [features]
# dev-graph = ["halo2_proofs/dev-graph", "plotters", "plotters/bitmap_backend", "plotters/bitmap_encoder"]
[[bench]]
name = "shot"
path = "benches/shot.rs"
harness = false
[[bench]]
name = "board"
path = "benches/board.rs"
harness = false
# [profile.dev]
# test = ["--target=wasm32-unknown-unknown"]
# [profile.test]
# target = "wasm32-unknown-unknown"