Skip to content

Commit

Permalink
bump versions, comment out patching
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagician committed Oct 28, 2024
1 parent 6c81f65 commit a673eb1
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"


[workspace.package]
version = "0.4.0"
version = "0.5.0"
authors = ["arkworks contributors"]
description = "A library for constructing polynomial commitment schemes for use in zkSNARKs"
repository = "https://github.com/arkworks-rs/poly-commit"
Expand All @@ -16,14 +16,14 @@ license = "MIT/Apache-2.0"
edition = "2018"

[workspace.dependencies]
ark-serialize = { version = "^0.4.0", default-features = false }
ark-ff = { version = "^0.4.0", default-features = false }
ark-ec = { version = "^0.4.0", default-features = false }
ark-poly = { version = "^0.4.0", default-features = false }
ark-crypto-primitives = { version = "^0.4.0", default-features = false }
ark-std = { version = "^0.4.0", default-features = false }
ark-relations = { version = "^0.4.0", default-features = false }
ark-r1cs-std = { version = "^0.4.0", default-features = false }
ark-serialize = { version = "0.5.0", default-features = false }
ark-ff = { version = "0.5.0", default-features = false }
ark-ec = { version = "0.5.0", default-features = false }
ark-poly = { version = "0.5.0", default-features = false }
ark-crypto-primitives = { version = "0.5.0", default-features = false }
ark-std = { version = "0.5.0", default-features = false }
ark-relations = { version = "0.5.0", default-features = false }
ark-r1cs-std = { version = "0.5.0", default-features = false }
rand_chacha = { version = "0.3.0", default-features = false }

[profile.release]
Expand All @@ -38,16 +38,16 @@ debug-assertions = true
incremental = true
debug = true

[patch.crates-io]
ark-std = { git = "https://github.com/arkworks-rs/std/" }
ark-ff = { git = "https://github.com/arkworks-rs/algebra/" }
ark-ec = { git = "https://github.com/arkworks-rs/algebra/" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra/" }
ark-poly = { git = "https://github.com/arkworks-rs/algebra/" }
# [patch.crates-io]
# ark-std = { git = "https://github.com/arkworks-rs/std/" }
# ark-ff = { git = "https://github.com/arkworks-rs/algebra/" }
# ark-ec = { git = "https://github.com/arkworks-rs/algebra/" }
# ark-serialize = { git = "https://github.com/arkworks-rs/algebra/" }
# ark-poly = { git = "https://github.com/arkworks-rs/algebra/" }

ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives/" }
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std/" }
# ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives/" }
# ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std/" }

ark-bls12-377 = { git = "https://github.com/arkworks-rs/algebra/" }
ark-bls12-381 = { git = "https://github.com/arkworks-rs/algebra/" }
ark-bn254 = { git = "https://github.com/arkworks-rs/algebra/" }
# ark-bls12-377 = { git = "https://github.com/arkworks-rs/algebra/" }
# ark-bls12-381 = { git = "https://github.com/arkworks-rs/algebra/" }
# ark-bn254 = { git = "https://github.com/arkworks-rs/algebra/" }

0 comments on commit a673eb1

Please sign in to comment.