-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (33 loc) · 1.1 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
[package]
name = "halo2-sha256-unoptimized"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num-bigint = { version = "0.4", features = ["rand"] }
sha2 = { version = "0.10.6", features = ["compress"] }
generic-array = { version = "0.14.6", features = ["more_lengths"] }
rand = "0.8.5"
rsa = { version = "0.6.1", features = ["serde"] }
halo2-base = { branch = "community-edition", default-features = false, features = [
"halo2-axiom",
"display",
"test-utils"
], git = "https://github.com/axiom-crypto/halo2-lib.git"}
num-traits = "0.2.15"
env_logger = "0.10.0"
itertools = "0.10.3"
hex = "0.4.3"
[target.'cfg(target_family = "wasm")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
console_error_panic_hook = "0.1.7"
rayon = "1.7"
serde = { version = "1.0", features = ["derive"] }
rand = "0.8.5"
[dev-dependencies]
criterion = "0.4"
[features]
default = ["halo2-axiom", "display"]
display = ["halo2-base/display"]
halo2-pse = ["halo2-base/halo2-pse"]
halo2-axiom = ["halo2-base/halo2-axiom"]