Skip to content

Commit

Permalink
use the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
weikengchen committed Jul 18, 2024
1 parent 99a9ae4 commit 0d7ed99
Showing 1 changed file with 15 additions and 30 deletions.
45 changes: 15 additions & 30 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark-r1cs-std"
version = "0.4.0"
version = "0.5.0-alpha.0"
authors = [ "arkworks contributors" ]
description = "A standard library for constraint system gadgets"
homepage = "https://arkworks.rs"
Expand All @@ -14,10 +14,10 @@ edition = "2021"
resolver = "2"

[dependencies]
ark-ff = { version = "0.4.0", default-features = false }
ark-ec = { 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-ff = { version = "0.5.0-alpha.0", default-features = false }
ark-ec = { version = "0.5.0-alpha.0", default-features = false }
ark-std = { version = "0.5.0-alpha.0", default-features = false }
ark-relations = { version = "0.5.0-alpha.0", default-features = false }

educe = "0.6.0"
tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
Expand All @@ -26,17 +26,17 @@ num-traits = { version = "0.2", default-features = false }
num-integer = { version = "0.1.44", default-features = false }

[dev-dependencies]
ark-test-curves = { version = "0.4.0", default-features = false, features = ["bls12_381_scalar_field", "bls12_381_curve", "mnt4_753_scalar_field"] }
ark-poly = { version = "0.4.0", default-features = false }
ark-test-curves = { version = "0.5.0-alpha.0", default-features = false, features = ["bls12_381_scalar_field", "bls12_381_curve", "mnt4_753_scalar_field"] }
ark-poly = { version = "0.5.0-alpha.0", default-features = false }
paste = "1.0"
ark-bls12-377 = { version = "0.4.0", features = ["curve"], default-features = false }
ark-bls12-381 = { version = "0.4.0", features = ["curve"], default-features = false }
ark-mnt4-298 = { version = "0.4.0", features = ["curve"], default-features = false }
ark-mnt4-753 = { version = "0.4.0", features = ["curve"], default-features = false }
ark-mnt6-298 = { version = "0.4.0", default-features = false }
ark-mnt6-753 = { version = "0.4.0", default-features = false }
ark-pallas = { version = "0.4.0", features = ["curve"], default-features = false }
ark-bn254 = { version = "0.4.0", features = ["curve"], default-features = false }
ark-bls12-377 = { version = "0.5.0-alpha.0", features = ["curve"], default-features = false }
ark-bls12-381 = { version = "0.5.0-alpha.0", features = ["curve"], default-features = false }
ark-mnt4-298 = { version = "0.5.0-alpha.0", features = ["curve"], default-features = false }
ark-mnt4-753 = { version = "0.5.0-alpha.0", features = ["curve"], default-features = false }
ark-mnt6-298 = { version = "0.5.0-alpha.0", default-features = false }
ark-mnt6-753 = { version = "0.5.0-alpha.0", default-features = false }
ark-pallas = { version = "0.5.0-alpha.0", features = ["curve"], default-features = false }
ark-bn254 = { version = "0.5.0-alpha.0", features = ["curve"], default-features = false }

[features]
default = ["std"]
Expand Down Expand Up @@ -75,18 +75,3 @@ debug = true

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(ci)'] }

[patch.crates-io]
ark-ff = { git = "https://github.com/arkworks-rs/algebra/" }
ark-ec = { git = "https://github.com/arkworks-rs/algebra/" }
ark-poly = { git = "https://github.com/arkworks-rs/algebra/" }
ark-serialize = { git = "https://github.com/arkworks-rs/algebra/" }
ark-test-curves = { git = "https://github.com/arkworks-rs/algebra/" }
ark-bn254 = { git = "https://github.com/arkworks-rs/curves/" }
ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves/" }
ark-bls12-381 = { git = "https://github.com/arkworks-rs/curves/" }
ark-mnt4-298 = { git = "https://github.com/arkworks-rs/curves/" }
ark-mnt4-753 = { git = "https://github.com/arkworks-rs/curves/" }
ark-mnt6-298 = { git = "https://github.com/arkworks-rs/curves/" }
ark-mnt6-753 = { git = "https://github.com/arkworks-rs/curves/" }
ark-pallas = { git = "https://github.com/arkworks-rs/curves/" }

0 comments on commit 0d7ed99

Please sign in to comment.