Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MSVR=1.64 and update Cargo manifest #194

Merged
merged 5 commits into from
Jan 20, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ and follow [semantic versioning](https://semver.org/) for our releases.
- [#169](https://github.com/EspressoSystems/jellyfish/pull/158) (`jf-primitives`) Stabilize API effort
- Introduced `trait CRHF` and moved current implementations under `struct FixedLengthRescueCRHF, VariableLengthRescueCRHF`.
- Introduced `trait CommitmentScheme` and moved current implementations under `struct FixedLengthRescueCommitment`.
- [#194](https://github.com/EspressoSystems/jellyfish/pull/194) (all) Set MSVR of all crates to 1.64.

### Fixed

Expand All @@ -70,6 +71,7 @@ and follow [semantic versioning](https://semver.org/) for our releases.
- [#116](https://github.com/EspressoSystems/jellyfish/pull/116) (`jf-primitives`) Introduced new `PolynomialCommitmentScheme` trait
- [#117](https://github.com/EspressoSystems/jellyfish/pull/117) (`jf-relation`) Added gadgets for comparison with constant values
- [#176](https://github.com/EspressoSystems/jellyfish/pull/176) (`jf-primitives`) Added implementation for light weight merkle tree -- an append-only merkle tree who only keeps its frontier.
- [#167](https://github.com/EspressoSystems/jellyfish/pull/167) (`jf-primitives`) Add `DigestGadget` associated type to `MerkleTreeGadget`.

### Changed

Expand Down
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,10 @@ members = [
"relation",
"utilities",
]

[workspace.package]
version = "0.1.2"
authors = ["Espresso Systems <[email protected]>"]
edition = "2018"
license = "MIT"
rust-version = "1.64.0"
9 changes: 5 additions & 4 deletions plonk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "jf-plonk"
description = "UltraPlonk implementation"
version = "0.1.2"
authors = ["Espresso Systems <[email protected]>"]
edition = "2018"
license = "MIT"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true

[dependencies]
ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves", rev = "677b4ae751a274037880ede86e9b6f30f62635af" }
Expand Down
9 changes: 5 additions & 4 deletions primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "jf-primitives"
description = "Cryptographic primitives"
version = "0.1.2"
authors = ["Espresso Systems <[email protected]>"]
edition = "2018"
license = "MIT"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true

[dependencies]
ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves", rev = "677b4ae751a274037880ede86e9b6f30f62635af" }
Expand Down
9 changes: 5 additions & 4 deletions relation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "jf-relation"
description = "Jellyfish constraint system for PLONK"
version = "0.1.2"
edition = "2018"
authors = ["Espresso Systems <[email protected]>"]
license = "MIT"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true

[dependencies]
ark-bls12-377 = { git = "https://github.com/arkworks-rs/curves", rev = "677b4ae751a274037880ede86e9b6f30f62635af" }
Expand Down
9 changes: 5 additions & 4 deletions utilities/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "jf-utils"
description = "Utilities for Jellyfish cryptographic library"
version = "0.1.2"
authors = ["Espresso Systems <[email protected]>"]
edition = "2018"
license = "MIT"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true

[dependencies]
ark-ec = { version = "0.3.0", default-features = false }
Expand Down