Merge pull request #713 from mir-protocol/tweak_features

Tweak features
This commit is contained in:
Daniel Lubarov 2022-09-07 15:57:27 -07:00 committed by GitHub
commit e127d5a4b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -5,8 +5,9 @@ version = "0.1.0"
edition = "2021"
[dependencies]
plonky2 = { path = "../plonky2", default-features = false, features = ["rand", "rand_chacha", "timing", "gate_testing"] }
plonky2 = { path = "../plonky2", default-features = false, features = ["rand", "timing"] }
plonky2_util = { path = "../util" }
maybe_rayon = { path = "../maybe_rayon" }
anyhow = "1.0.40"
env_logger = "0.9.0"
ethereum-types = "0.13.1"
@ -17,7 +18,6 @@ log = "0.4.14"
once_cell = "1.13.0"
pest = "2.1.3"
pest_derive = "2.1.0"
maybe_rayon = { path = "../maybe_rayon" }
rand = "0.8.5"
rand_chacha = "0.3.1"
rlp = "0.5.1"
@ -31,7 +31,7 @@ hex = "0.4.3"
[features]
default = ["parallel"]
asmtools = ["hex"]
parallel = ["maybe_rayon/parallel"]
parallel = ["plonky2/parallel", "maybe_rayon/parallel"]
[[bin]]
name = "assemble"

View File

@ -6,13 +6,13 @@ edition = "2021"
[features]
default = ["parallel"]
parallel = ["maybe_rayon/parallel"]
parallel = ["plonky2/parallel", "maybe_rayon/parallel"]
[dependencies]
plonky2 = { path = "../plonky2", default-features = false, features = ["rand", "timing", "rand_chacha"] }
plonky2 = { path = "../plonky2", default-features = false, features = ["rand", "timing"] }
plonky2_util = { path = "../util" }
maybe_rayon = { path = "../maybe_rayon"}
anyhow = "1.0.40"
env_logger = "0.9.0"
itertools = "0.10.0"
log = "0.4.14"
maybe_rayon = { path = "../maybe_rayon"}