-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (29 loc) · 1.09 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
[package]
edition = "2021"
name = "file-hasher"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
dev-graph = ["halo2_proofs/dev-graph", "plotters"]
[dependencies]
# halo2_gadgets = "0.2.0"
# halo2_proofs = "0.2.0"
halo2_gadgets = {path = "/Users/cheechyuanang/Documents/repo/halo2/halo2_gadgets"}
halo2_proofs = {path = "/Users/cheechyuanang/Documents/repo/halo2/halo2_proofs"}
plotters = {version = "0.3.0", optional = true}
rand_core = {version = "0.6", default-features = false, features = ["getrandom"]}
sha2 = "0.10.6"
tabbycat = {version = "0.1", features = ["attributes"], optional = true}
ff = "0.12"
bitvec = "1.0.1"
[lib]
crate-type = ["cdylib", "rlib"]
[target.'cfg(target_family = "wasm")'.dependencies]
console_error_panic_hook = "0.1.7"
getrandom = {version = "0.2", features = ["js"]}
js-sys = "0.3"
rayon = "1.5"
wasm-bindgen = {version = "0.2.81", features = ["serde-serialize"]}
wasm-bindgen-futures = "0.4"
wasm-bindgen-rayon = {version = "1.0"}
web-sys = {version = "0.3", features = ["Request", "Window", "Response"]}