Skip to content

Commit

Permalink
Move ark-poly into dev-dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaker committed Jun 16, 2024
1 parent e6f5f28 commit cb8d0f4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,14 @@ log = "0.4.20"
ark-ff = {version="0.4.0", optional=true}
ark-ec = {version="0.4.0", optional=true}
ark-serialize = {version="0.4.2", optional=true, features=["std"]}
ark-poly = {version="0.4.0", optional=true}
# anemoi = {git = "https://github.com/anemoi-hash/anemoi-rust", optional=true}
group = {version="0.13.0", optional=true}
ark-bls12-381 = {version="0.4.0", optional=true}


[features]
default = []
default = []
ark = ["dep:ark-ff", "dep:ark-ec", "dep:ark-serialize"]
ark-polynomial = [ "ark-poly" ]
group = ["dep:group"]
ark-bls12-381 = ["ark", "dep:ark-bls12-381"]
# anemoi = ["dep:anemoi"]
Expand All @@ -59,6 +57,7 @@ ark-pallas = { version = "0.4.0", features = ["std"] }
pallas = "0.22.0"
pasta_curves = "0.5.1"
ark-vesta = { version = "0.4.0", features = ["std"] }
ark-poly = {version="0.4.0"}

[package.metadata.docs.rs]
rustdoc-args = [
Expand All @@ -81,4 +80,4 @@ required-features = ["ark"]

[[example]]
name = "sumcheck"
required-features = ["ark", "ark-polynomial"]
required-features = ["ark"]

0 comments on commit cb8d0f4

Please sign in to comment.