mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-06 15:53:10 +00:00
Merge pull request #713 from mir-protocol/tweak_features
Tweak features
This commit is contained in:
commit
e127d5a4b1
@ -5,8 +5,9 @@ version = "0.1.0"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[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" }
|
plonky2_util = { path = "../util" }
|
||||||
|
maybe_rayon = { path = "../maybe_rayon" }
|
||||||
anyhow = "1.0.40"
|
anyhow = "1.0.40"
|
||||||
env_logger = "0.9.0"
|
env_logger = "0.9.0"
|
||||||
ethereum-types = "0.13.1"
|
ethereum-types = "0.13.1"
|
||||||
@ -17,7 +18,6 @@ log = "0.4.14"
|
|||||||
once_cell = "1.13.0"
|
once_cell = "1.13.0"
|
||||||
pest = "2.1.3"
|
pest = "2.1.3"
|
||||||
pest_derive = "2.1.0"
|
pest_derive = "2.1.0"
|
||||||
maybe_rayon = { path = "../maybe_rayon" }
|
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
rand_chacha = "0.3.1"
|
rand_chacha = "0.3.1"
|
||||||
rlp = "0.5.1"
|
rlp = "0.5.1"
|
||||||
@ -31,7 +31,7 @@ hex = "0.4.3"
|
|||||||
[features]
|
[features]
|
||||||
default = ["parallel"]
|
default = ["parallel"]
|
||||||
asmtools = ["hex"]
|
asmtools = ["hex"]
|
||||||
parallel = ["maybe_rayon/parallel"]
|
parallel = ["plonky2/parallel", "maybe_rayon/parallel"]
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "assemble"
|
name = "assemble"
|
||||||
|
|||||||
@ -6,13 +6,13 @@ edition = "2021"
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["parallel"]
|
default = ["parallel"]
|
||||||
parallel = ["maybe_rayon/parallel"]
|
parallel = ["plonky2/parallel", "maybe_rayon/parallel"]
|
||||||
|
|
||||||
[dependencies]
|
[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" }
|
plonky2_util = { path = "../util" }
|
||||||
|
maybe_rayon = { path = "../maybe_rayon"}
|
||||||
anyhow = "1.0.40"
|
anyhow = "1.0.40"
|
||||||
env_logger = "0.9.0"
|
env_logger = "0.9.0"
|
||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
log = "0.4.14"
|
log = "0.4.14"
|
||||||
maybe_rayon = { path = "../maybe_rayon"}
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user