diff --git a/ring/Cargo.toml b/ring/Cargo.toml index c52d292..6269f59 100644 --- a/ring/Cargo.toml +++ b/ring/Cargo.toml @@ -16,7 +16,7 @@ ark-serialize.workspace = true fflonk.workspace = true merlin.workspace = true rayon = { workspace = true, optional = true } -common = { path = "../common" } +common = { path = "../common", default-features = false } blake2 = { version = "0.10", default-features = false } [dev-dependencies] @@ -26,5 +26,5 @@ ark-ed-on-bls12-381-bandersnatch = { version = "0.4", default-features = false } [features] default = [] std = ["ark-std/std", "ark-ff/std", "ark-ec/std", "ark-poly/std", "ark-serialize/std", "merlin/std", "fflonk/std", "common/std"] -parallel = ["std", "rayon", "ark-std/parallel", "ark-ff/parallel", "ark-ec/parallel", "ark-poly/parallel"] -print-trace = ["ark-std/print-trace"] \ No newline at end of file +parallel = ["std", "rayon", "ark-std/parallel", "ark-ff/parallel", "ark-ec/parallel", "ark-poly/parallel", "common/parallel"] +print-trace = ["ark-std/print-trace", "common/print-trace"]