Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

### Breaking changes

### Features

### Improvements

### Bugfixes

## v0.5.0

### Breaking changes

- [\#121](https://github.com/arkworks-rs/r1cs-std/pull/121)
- Refactor `UInt{8,16,64,128}` into one struct `UInt`.
- Remove `bits` module.
Expand Down
46 changes: 15 additions & 31 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"
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", default-features = false }
ark-ec = { 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 }

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", default-features = false, features = ["bls12_381_scalar_field", "bls12_381_curve", "mnt4_753_scalar_field"] }
ark-poly = { version = "0.5.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", features = ["curve"], default-features = false }
ark-bls12-381 = { version = "0.5.0", features = ["curve"], default-features = false }
ark-mnt4-298 = { version = "0.5.0", features = ["curve"], default-features = false }
ark-mnt4-753 = { version = "0.5.0", features = ["curve"], default-features = false }
ark-mnt6-298 = { version = "0.5.0", default-features = false }
ark-mnt6-753 = { version = "0.5.0", default-features = false }
ark-pallas = { version = "0.5.0", features = ["curve"], default-features = false }
ark-bn254 = { version = "0.5.0", features = ["curve"], default-features = false }

[features]
default = ["std"]
Expand Down Expand Up @@ -75,19 +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/" }
ark-std = { git = "https://github.com/arkworks-rs/std/" }